X-Git-Url: http://git.kpe.io/?p=cl-modlisp.git;a=blobdiff_plain;f=modlisp.asd;h=08d3cf51665e7a1e6abbba25e79d1179a8ebeda3;hp=88d51fbaa8aedc6dd5ccedfb471b783865c4129f;hb=HEAD;hpb=315ebc6354619483aa1be1124eb3736cee6f7ab7 diff --git a/modlisp.asd b/modlisp.asd index 88d51fb..08d3cf5 100644 --- a/modlisp.asd +++ b/modlisp.asd @@ -7,32 +7,20 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Dec 2002 ;;;; -;;;; $Id: modlisp.asd,v 1.3 2003/07/05 00:51:04 kevin Exp $ +;;;; $Id$ ;;;; ************************************************************************* +(in-package #:cl-user) + (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) +#+(or allegro cmu lispworks sbcl) (defsystem modlisp - :depends-on (#+sbcl :sb-bsd-sockets) + :depends-on (:kmrcl) :components ((:file "package") (:file "variables" :depends-on ("package")) - (:file #+allegro "impl-acl" - #+clisp "impl-clisp" - #+cmu "impl-cmucl" - #+sbcl "impl-sbcl" - #+lispworks "impl-lispworks" - :depends-on ("variables")) - (:file "base" - :depends-on (#+allegro "impl-acl" - #+clisp "impl-clisp" - #+cmu "impl-cmucl" - #+lispworks "impl-lispworks" - #+sbcl "impl-sbcl")) + (:file "base" :depends-on ("variables")) (:file "utils" :depends-on ("base")) (:file "demo" :depends-on ("utils"))))