[mcclim-cvs] CVS mcclim
dlichteblau
dlichteblau at common-lisp.net
Fri Dec 21 15:02:32 UTC 2007
Update of /project/mcclim/cvsroot/mcclim
In directory clnet:/tmp/cvs-serv4004
Modified Files:
mcclim.asd
Log Message:
Fixed McCLIM on OpenMCL/Linux.
... don't require cocoa by default.
... instead, conditionalize on CLIM-BEAGLE
--- /project/mcclim/cvsroot/mcclim/mcclim.asd 2007/12/21 12:31:56 1.66
+++ /project/mcclim/cvsroot/mcclim/mcclim.asd 2007/12/21 15:02:32 1.67
@@ -83,7 +83,7 @@
:class requireable-system))
;;; Required for the beagle backend (not activated by default)
-#+clozure-common-lisp
+#+clim-beagle
(progn
(require :cocoa)
(require :objc-support))
@@ -530,16 +530,13 @@
;; If we're on an implementation that ships CLX, use
;; it. Same if the user has loaded CLX already.
#+(and (or sbcl scl openmcl ecl clx allegro)
- (not (or gtkairo clim-graphic-forms)))
+ (not (or gtkairo clim-graphic-forms clim-beagle)))
:clim-clx
#+clim-graphic-forms :clim-graphic-forms
#+gl :clim-opengl
;; OpenMCL and MCL support the beagle backend (native
;; OS X look&feel on OS X).
-
- ;; But until it's ready, it's no use forcing users to
- ;; cope with possible bugs.
- ;; #+(or openmcl mcl) :clim-beagle
+ #+clim-beagle :clim-beagle
#+gtkairo :clim-gtkairo
More information about the Mcclim-cvs
mailing list