X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/2518e203b1a0de56b52e725448a8d12f98db3c76..79c7839653d89bae3d5d7ef490ef32dd5d248b30:/glib/glib.asd diff --git a/glib/glib.asd b/glib/glib.asd index b2b270d..5c18f0b 100644 --- a/glib/glib.asd +++ b/glib/glib.asd @@ -23,6 +23,24 @@ (when (string>= (pkg-version "glib-2.0") "2.6.0") (push :glib2.6 *features*)) +(when (string>= (pkg-version "glib-2.0") "2.8.0") + (push :glib2.8 *features*)) + +#+sbcl +(when (string>= (lisp-implementation-version) "0.9.8") + (push :sbcl>=0.9.8 *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")