X-Git-Url: http://git.kpe.io/?p=cl-modlisp.git;a=blobdiff_plain;f=modlisp.asd;fp=modlisp.asd;h=88d51fbaa8aedc6dd5ccedfb471b783865c4129f;hp=95a75b77aacb03dcbf5414e3618e96fb93225502;hb=315ebc6354619483aa1be1124eb3736cee6f7ab7;hpb=1bb49e27c591c846849c80b6e543a8b207f9dad4 diff --git a/modlisp.asd b/modlisp.asd index 95a75b7..88d51fb 100644 --- a/modlisp.asd +++ b/modlisp.asd @@ -7,15 +7,18 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Dec 2002 ;;;; -;;;; $Id: modlisp.asd,v 1.2 2003/07/04 22:41:06 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 - :depends-on (:kmrcl #+sbcl :sb-bsd-sockets) + :depends-on (#+sbcl :sb-bsd-sockets) :components ((:file "package") (:file "variables" :depends-on ("package")) @@ -31,4 +34,5 @@ #+cmu "impl-cmucl" #+lispworks "impl-lispworks" #+sbcl "impl-sbcl")) - (:file "utils" :depends-on ("base")))) + (:file "utils" :depends-on ("base")) + (:file "demo" :depends-on ("utils"))))