X-Git-Url: http://git.kpe.io/?p=cl-modlisp.git;a=blobdiff_plain;f=modlisp.asd;h=08d3cf51665e7a1e6abbba25e79d1179a8ebeda3;hp=73a701d07a768ffb5d39da401d2e48a236cc6dc1;hb=HEAD;hpb=f8ddd8423e2378c2f61f59ada19c1cbe928489f1 diff --git a/modlisp.asd b/modlisp.asd index 73a701d..08d3cf5 100644 --- a/modlisp.asd +++ b/modlisp.asd @@ -7,36 +7,20 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Dec 2002 ;;;; -;;;; $Id: modlisp.asd,v 1.5 2003/07/05 22:59:56 kevin Exp $ +;;;; $Id$ ;;;; ************************************************************************* (in-package #:cl-user) -#+(and sbcl (not sb-thread)) -(error "This package requires the multitasking 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 cmu lispworks sbcl) (defsystem modlisp :depends-on (:kmrcl) :components ((:file "package") - (:file "compat" :depends-on ("package")) (:file "variables" :depends-on ("package")) - (:file #+(or allegro cmu sbcl) "server" - #+clisp "impl-clisp" - #+lispworks "impl-lispworks" - :depends-on ("compat" "variables")) - (:file "base" - :depends-on (#+(or allegro cmu sbcl) "server" - #+clisp "impl-clisp" - #+lispworks "impl-lispworks")) + (:file "base" :depends-on ("variables")) (:file "utils" :depends-on ("base")) (:file "demo" :depends-on ("utils"))))