r5242: *** empty log message ***
[cl-modlisp.git] / modlisp.asd
index 7876e3cf180dd17c72f04fe01af0a02b3e6e7f70..461084f41eb0a1e391e194bf5b943b0046f23691 100644 (file)
@@ -7,31 +7,34 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Dec 2002
 ;;;;
-;;;; $Id: modlisp.asd,v 1.1 2003/07/04 19:52:32 kevin Exp $
+;;;; $Id: modlisp.asd,v 1.6 2003/07/05 23:04:32 kevin Exp $
 ;;;; *************************************************************************
 
+(in-package #:cl-user)
+
+#+(and sbcl (not sb-thread))
+(error "This package requires the multitasking version of sbcl")
+
+(eval-when (:compile-toplevel :load-toplevel :execute)
+  #+sbcl (require :sb-bsd-sockets)
+  #+lispworks (require "comm")
+  #+allegro (require :socket))
+
 (defpackage #:modlisp-system (:use #:cl #:asdf))
 (in-package #:modlisp-system)
 
 #+(or allegro clisp cmu lispworks sbcl)
 (defsystem modlisp
-    :default-component-class kboot:kmr-cl-source-file
-    :depends-on (:kmrcl
-                :base64
-                #+sbcl :sb-bsd-sockets)
+    :depends-on (:kmrcl)
     :components
     ((:file "package")
-     (:file "data-structures" :depends-on ("package"))
-     (:file #+allegro "impl-acl"
-           #+clisp "impl-clisp"
-           #+cmu "impl-cmucl"
-           #+sbcl "impl-sbcl"
+     (:file "compat" :depends-on ("package"))
+     (:file "variables" :depends-on ("package"))
+     (:file #+(or allegro clisp cmu sbcl) "server"
            #+lispworks "impl-lispworks"
-           :depends-on ("data-structures"))
+           :depends-on ("compat" "variables"))
      (:file "base"
-           :depends-on (#+allegro "impl-acl"
-                        #+clisp "impl-clisp"
-                        #+cmu "impl-cmucl"
-                        #+lispworks "impl-lispworks"
-                        #+sbcl "impl-sbcl"))
-     (:file "utils" :depends-on ("base"))))
+           :depends-on (#+(or allegro clisp cmu sbcl) "server"
+                        #+lispworks "impl-lispworks"))
+     (:file "utils" :depends-on ("base"))
+     (:file "demo" :depends-on ("utils"))))