Hello.
        I have some interest in simplifying installation of Cells-GTK on as
wide range of platforms as possible (from the "expansive" point-of-view:
I have a perfectly fine installation of Cells-GTK on SBCL on Linux on my
notebook).
        The attached patch enables ECL support in Ramarren cells fork. It
actually does nothing except noting that ECL uses :clos package for MOP.
I hope it will be included in master branch somewhen soon..
        (cells::test-cells) gives no Cells errors (dribble errors do not count,
right?).

        Thanks
Michael Raskin
diff -U3 -r Ramarren-cells-beb09a0/cells.asd 
/home/raskin/.sbcl/site/Ramarren-cells-beb09a0/cells.asd
--- Ramarren-cells-beb09a0/cells.asd    2010-01-29 09:49:41.000000000 +0300
+++ /home/raskin/.sbcl/site/Ramarren-cells-beb09a0/cells.asd    2010-01-20 
20:20:11.000000000 +0300
@@ -1,6 +1,6 @@
 ;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
 
-#+(or allegro lispworks cmu mcl ccl clisp cormanlisp sbcl scl ecl)
+#+(or allegro lispworks cmu mcl ccl clisp cormanlisp sbcl scl)
 (progn
 (declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
 
diff -U3 -r Ramarren-cells-beb09a0/defpackage.lisp 
/home/raskin/.sbcl/site/Ramarren-cells-beb09a0/defpackage.lisp
--- Ramarren-cells-beb09a0/defpackage.lisp      2010-01-29 09:51:58.000000000 
+0300
+++ /home/raskin/.sbcl/site/Ramarren-cells-beb09a0/defpackage.lisp      
2010-01-20 20:20:11.000000000 +0300
@@ -33,9 +33,8 @@
    #+lispworks #:clos
    #+sbcl #:sb-mop
    #+(or ccl mcl) #:ccl
-   #+ecl #:clos
    
-   #-(or allegro clisp cmu cormanlisp lispworks mcl ccl sbcl ecl)
+   #-(or allegro clisp cmu cormanlisp lispworks mcl ccl sbcl)
    #.(cerror "Provide a package name."
        "Don't know how to find the MOP package for this Lisp.")
    
diff -U3 -r Ramarren-cells-beb09a0/utils-kt/defpackage.lisp 
/home/raskin/.sbcl/site/Ramarren-cells-beb09a0/utils-kt/defpackage.lisp
--- Ramarren-cells-beb09a0/utils-kt/defpackage.lisp     2010-01-29 
09:52:42.000000000 +0300
+++ /home/raskin/.sbcl/site/Ramarren-cells-beb09a0/utils-kt/defpackage.lisp     
2010-01-20 20:20:11.000000000 +0300
@@ -36,7 +36,7 @@
 (defpackage :utils-kt
   (:nicknames #:ukt)
   (:use #:common-lisp
-    #+(or allegro lispworks clisp ecl) #:clos
+    #+(or allegro lispworks clisp) #:clos
     #+cmu  #:mop
     #+sbcl #:sb-mop
     #+openmcl-partial-mop #:openmcl-mop
diff -U3 -r Ramarren-cells-beb09a0/utils-kt.asd 
/home/raskin/.sbcl/site/Ramarren-cells-beb09a0/utils-kt.asd
--- Ramarren-cells-beb09a0/utils-kt.asd 2010-01-29 09:49:55.000000000 +0300
+++ /home/raskin/.sbcl/site/Ramarren-cells-beb09a0/utils-kt.asd 2010-01-20 
20:20:11.000000000 +0300
@@ -6,7 +6,7 @@
 ;;;(operate 'load-op :asdf-aclproj)
 ;;;(use-package :asdf-aclproj)
 
-#+(or allegro lispworks cmu mcl ccl clisp cormanlisp sbcl scl ecl)
+#+(or allegro lispworks cmu mcl ccl clisp cormanlisp sbcl scl)
 
 (asdf:defsystem :utils-kt
   :name "utils-kt"
_______________________________________________
cells-devel site list
cells-devel@common-lisp.net
http://common-lisp.net/mailman/listinfo/cells-devel

Reply via email to