r5233: *** empty log message ***
[cl-modlisp.git] / modlisp.asd
index 7876e3cf180dd17c72f04fe01af0a02b3e6e7f70..88d51fbaa8aedc6dd5ccedfb471b783865c4129f 100644 (file)
@@ -7,31 +7,32 @@
 ;;;; 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.3 2003/07/05 00:51:04 kevin Exp $
 ;;;; *************************************************************************
 
 (defpackage #:modlisp-system (:use #:cl #:asdf))
 (in-package #:modlisp-system)
 
+#+(and sbcl (not sb-thread))
+(error "This package requires the multitasking version of sbcl")
+
 #+(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 (#+sbcl :sb-bsd-sockets)
     :components
     ((:file "package")
-     (:file "data-structures" :depends-on ("package"))
+     (:file "variables" :depends-on ("package"))
      (:file #+allegro "impl-acl"
            #+clisp "impl-clisp"
            #+cmu "impl-cmucl"
            #+sbcl "impl-sbcl"
            #+lispworks "impl-lispworks"
-           :depends-on ("data-structures"))
+           :depends-on ("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"))))
+     (:file "utils" :depends-on ("base"))
+     (:file "demo" :depends-on ("utils"))))