chiark / gitweb /
Custom types are now re-registered when a saved image is loaded
[clg] / glib / glib.asd
index b2b270de368ca39c46e85f999711fbb0eae26c58..44de186858e3988770237108491c9bda79f32a42 100644 (file)
 
 (pkg-exists-p "glib-2.0" :atleast-version "2.4.0")
 
-(when (string>= (pkg-version "glib-2.0") "2.6.0")
+(when (pkg-exists-p "glib-2.0" :atleast-version "2.6.0" :error nil)
   (push :glib2.6 *features*))
 
+(when (pkg-exists-p "glib-2.0" :atleast-version "2.8.0" :error nil)
+  (push :glib2.8 *features*))
+
+#+sbcl
+(progn
+  (when (sbcl>= 0 9 8)
+    (push :sbcl>=0.9.8 *features*))
+  (when (sbcl>= 0 9 10)
+    (push :sbcl>=0.9.10 *features*)))
+
+#+(and sbcl (not alien-callbacks))
+(eval-when (:compile-toplevel :load-toplevel :execute)
+  (unless (find-symbol "DEFINE-ALIEN-FUNCTION" "SB-ALIEN")
+    (error "You need to upgrade SBCL to a version with native C callback support or see the README file about how to add third party callbacks to your current SBCL version.")))
+
+#+(and sbcl alien-callbacks)
+(eval-when (:compile-toplevel :load-toplevel :execute)
+  (when (find-symbol "DEFINE-ALIEN-FUNCTION" "SB-ALIEN")
+    (error "Third party C callback code detected in a SBCL image with native callback support. As clg now uses native callbacks when available, you need to use a \"clean\" core file.")))
+
+
 (defsystem glib
     :depends-on (clg-tools)
     :components ((:file "defpackage")