X-Git-Url: http://git.kpe.io/?p=cl-modlisp.git;a=blobdiff_plain;f=modlisp.asd;fp=modlisp.asd;h=d7f50f9027b1dc866910688c3f3f882c6085496a;hp=790298f6cb0573e39e906e21dc4fb7d056b42bba;hb=40b5dce89637f3b90b71ee6ee3932aafa595640b;hpb=4545c194136bd916c6fd240a148804c5cccfec63 diff --git a/modlisp.asd b/modlisp.asd index 790298f..d7f50f9 100644 --- a/modlisp.asd +++ b/modlisp.asd @@ -7,13 +7,13 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Dec 2002 ;;;; -;;;; $Id: modlisp.asd,v 1.7 2003/07/08 06:40:00 kevin Exp $ +;;;; $Id: modlisp.asd,v 1.8 2003/07/08 16:12:03 kevin Exp $ ;;;; ************************************************************************* (in-package #:cl-user) #+(and sbcl (not sb-thread)) -(error "This package requires the multitasking version of sbcl") +(warn "This package requires the multithreading version of sbcl") (eval-when (:compile-toplevel :load-toplevel :execute) #+sbcl (require :sb-bsd-sockets) @@ -23,19 +23,12 @@ (defpackage #:modlisp-system (:use #:cl #:asdf)) (in-package #:modlisp-system) -#+(or allegro clisp cmu lispworks sbcl) +#+(or allegro clisp cmu lispworks sbcl-thread) (defsystem modlisp :depends-on (:kmrcl) :components ((:file "package") - (:file "compat" :depends-on ("package")) (:file "variables" :depends-on ("package")) - (:file #+(or allegro clisp cmu sbcl lispworks) "server" -;; #+lispworks "impl-lispworks" - :depends-on ("compat" "variables")) - (:file "base" - :depends-on (#+(or allegro clisp cmu sbcl lispworks) "server" -;; #+lispworks "impl-lispworks" - )) + (:file "base" :depends-on ("variables")) (:file "utils" :depends-on ("base")) (:file "demo" :depends-on ("utils"))))