[mcclim-cvs] CVS mcclim

thenriksen thenriksen at common-lisp.net
Sat Jan 6 13:27:25 UTC 2007


Update of /project/mcclim/cvsroot/mcclim
In directory clnet:/tmp/cvs-serv19077

Modified Files:
	mcclim.asd 
Log Message:
Really Make CLISP Work.


--- /project/mcclim/cvsroot/mcclim/mcclim.asd	2007/01/06 13:11:42	1.46
+++ /project/mcclim/cvsroot/mcclim/mcclim.asd	2007/01/06 13:27:25	1.47
@@ -41,6 +41,11 @@
   (defun find-swank ()
     (or (find-swank-package)
         (find-swank-system)))
+  (defun dep-on-swank ()
+    (if (and (find-swank-system)
+             (not (find-package :swank)))
+        '(and)
+        '(or)))
   (defun ifswank ()
     (if (find-swank)
         '(and)
@@ -257,7 +262,7 @@
 
 
 (defsystem :drei-mcclim
-  :depends-on (:flexichain :esa-mcclim :clim-core #+#.(mcclim.system::ifswank) :swank)
+  :depends-on (:flexichain :esa-mcclim :clim-core #+#.(mcclim.system::dep-on-swank) :swank)
   :components
   ((:module "cl-automaton"
             :pathname #.(make-pathname :directory '(:relative "Drei" "cl-automaton"))




More information about the Mcclim-cvs mailing list