From david at lichteblau.com Sun Jan 27 14:51:13 2008 From: david at lichteblau.com (David Lichteblau) Date: Sun, 27 Jan 2008 15:51:13 +0100 Subject: [cells-devel] CVS for Cells 2.0? Message-ID: <20080127145113.GN30892@radon> Hi, is there an up-to-date CVS repository for Cells 2.0 (or whatever version of cells it is that I need for cells-gtk)? I was thinking about adding cells-gtk to clbuild, and we strongly prefer version-controlled methods like CVS/SVN/darcs/git over tarball downloads. Thanks, David From kennytilton at optonline.net Sun Jan 27 21:16:23 2008 From: kennytilton at optonline.net (Ken Tilton) Date: Sun, 27 Jan 2008 16:16:23 -0500 Subject: [cells-devel] CVS for Cells 2.0? In-Reply-To: <20080127145113.GN30892@radon> References: <20080127145113.GN30892@radon> Message-ID: <479CF4A7.6050406@optonline.net> David Lichteblau wrote: > Hi, > > is there an up-to-date CVS repository for Cells 2.0 (or whatever version > of cells it is that I need for cells-gtk)? No. Ah, hang on, cells-gtk does seem to have pulled a copy into their cvs: http://common-lisp.net/cgi-bin/viewcvs.cgi/cells/?root=cells-gtk I would check with the cells-gtk people to confirm that the cvs aligns with the tarball. kt From peter.hildebrandt at gmail.com Sun Jan 27 21:21:45 2008 From: peter.hildebrandt at gmail.com (Peter Hildebrandt) Date: Sun, 27 Jan 2008 22:21:45 +0100 Subject: [cells-devel] CVS for Cells 2.0? In-Reply-To: <479CF4A7.6050406@optonline.net> References: <20080127145113.GN30892@radon> <479CF4A7.6050406@optonline.net> Message-ID: <479CF5E9.8040204@gmail.com> Ken Tilton wrote: > http://common-lisp.net/cgi-bin/viewcvs.cgi/cells/?root=cells-gtk Looks right to me. Peter. > I would check with the cells-gtk people to confirm that the cvs aligns > with the tarball. > > kt > _______________________________________________ > cells-devel site list > cells-devel at common-lisp.net > http://common-lisp.net/mailman/listinfo/cells-devel From peter.hildebrandt at gmail.com Sun Jan 27 22:11:39 2008 From: peter.hildebrandt at gmail.com (Peter Hildebrandt) Date: Sun, 27 Jan 2008 23:11:39 +0100 Subject: [cells-devel] cells3 Message-ID: <479D019B.6010108@gmail.com> I'm trying to get cells3 + Celtk up and running on sbcl/linux, and I found three issues: (i) in utils-kt/core.lisp, defmacro export!: sbcl does not like the export at compile time: `(eval-when (#-sbcl :compile-toplevel :load-toplevel :execute) (ii) in Celtk/run.lisp, defun run-window: (CG:kill-splash-screen) ---> CG is an unknown package for me. This is Allegro Common Graphics, I assume? I changed that to #+allegro (CG:... (iii) in Celtk/tk-interp.lisp, the names do not match the latest tcl/tk. Something with :or would work better: (define-foreign-library Tcl (:darwin (:framework "Tcl")) (:windows (:or "Tcl85.dll")) (:unix (:or "libtcl.so" "libtcl8.5.so.0" "libtcl8.5.so" "libtcl8.4.so.0" "libtcl8.5.so")) (t (:default "libtcl"))) (define-foreign-library Tk (:darwin (:framework "Tk")) (:windows (:or "Tk85.dll")) (:unix (:or "libtk.so" "libtk8.5.so.0" "libtk8.5.so" "libtk8.4.so.0" "libtk8.4.so")) (t (:default "libtk"))) (define-foreign-library Tile ;(:darwin (:framework "Tk")) (:windows (:or "tile078.dll")) (:unix (:or "libtk.so" "libtk8.5.so.0" "libtk8.5.so" "libtk8.4.so.0" "libtk8.4.so")) (t (:default "libtk"))) HTH someone, Peter