X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=modlisp.asd;h=d7f50f9027b1dc866910688c3f3f882c6085496a;hb=85ddc1f6a61fe59518541d2a7ddd9a0d014085f6;hp=88d51fbaa8aedc6dd5ccedfb471b783865c4129f;hpb=315ebc6354619483aa1be1124eb3736cee6f7ab7;p=cl-modlisp.git diff --git a/modlisp.asd b/modlisp.asd index 88d51fb..d7f50f9 100644 --- a/modlisp.asd +++ b/modlisp.asd @@ -7,32 +7,28 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Dec 2002 ;;;; -;;;; $Id: modlisp.asd,v 1.3 2003/07/05 00:51:04 kevin Exp $ +;;;; $Id: modlisp.asd,v 1.8 2003/07/08 16:12:03 kevin Exp $ ;;;; ************************************************************************* -(defpackage #:modlisp-system (:use #:cl #:asdf)) -(in-package #:modlisp-system) +(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) + #+lispworks (require "comm") + #+allegro (require :socket)) + +(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 (#+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"))))