Update domain name to kpe.io
[cl-modlisp.git] / modlisp.asd
index 88d51fbaa8aedc6dd5ccedfb471b783865c4129f..08d3cf51665e7a1e6abbba25e79d1179a8ebeda3 100644 (file)
@@ -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"))))