chiark / gitweb /
Added gffi to the list of required modules
authorespen <espen>
Tue, 25 Apr 2006 22:16:22 +0000 (22:16 +0000)
committerespen <espen>
Tue, 25 Apr 2006 22:16:22 +0000 (22:16 +0000)
atk/atk.asd
cairo/cairo.asd
gdk/gdk.asd
pango/pango.asd
rsvg/rsvg.asd

index e46949b0eaf354861867497096b867b08e6ac7c6..9b03b9c3be2fc54b3b2a0edff817821d0c2c189b 100644 (file)
@@ -6,11 +6,11 @@
 
 (in-package "ATK-SYSTEM")
 
-(pkg-exists-p "atk" :atleast-version "1.6.0")
+(pkg-exists-p "atk" :atleast-version "1.6.0" :error t)
 
 
 (defsystem atk
-    :depends-on (glib gdk)
+    :depends-on (gffi glib gdk)
     :components ((:library "libatk-1.0"
                           :libdir #.(pkg-variable "atk" "libdir"))
                 (:file "defpackage")
index d7bada9c8555e20288fc70c78f5492beed40d97b..4f015aa37d7f49f7b93ab28f38cd0d68981c2b25 100644 (file)
@@ -6,11 +6,11 @@
 
 (in-package "CAIRO-SYSTEM")
 
-(pkg-exists-p "cairo" :atleast-version "1.0.2")
+(pkg-exists-p "cairo" :atleast-version "1.0.2" :error t)
 
 
 (defsystem cairo
-    :depends-on (glib)
+    :depends-on (gffi glib)
     :components ((:library "libcairo" 
                  :libdir #.(pkg-variable "cairo" "libdir"))
                 (:file "defpackage")
index 61882544bf69a62ab3ec9b03571a35a7864de44a..5f04e4e390bcc7afa788afa2288871252778a090 100644 (file)
@@ -5,16 +5,10 @@
 
 (in-package "GDK-SYSTEM")
 
-(pkg-exists-p "gtk+-2.0" :atleast-version "2.4.0")
-
-(when (string>= (pkg-version "gtk+-2.0") "2.6.0")
-  (pushnew :gtk2.6 *features*))
-
-(when (string>= (pkg-version "gtk+-2.0") "2.8.0")
-  (pushnew :gtk2.8 *features*))
+(pkg-exists-p "gtk+-2.0" :atleast-version "2.4.0" :error t)
 
 (defsystem gdk
-    :depends-on (glib pango #+gtk2.8 cairo)
+    :depends-on (gffi glib pango #?(pkg-exists-p "gtk+-2.0" :atleast-version "2.8.0") cairo)
     :components ((:file "defpackage")
                 (:library "libgdk_pixbuf-2.0" 
                           :libdir #.(pkg-variable "gtk+-2.0" "libdir"))
index b5b9cb5c0ef3b48cb7b2fe0bbb8ab7d2fbbbd509..86454fb1009e4ce0a153f848b250910d747b7486 100644 (file)
@@ -6,11 +6,11 @@
 
 (in-package "PANGO-SYSTEM")
 
-(pkg-exists-p "pango" :atleast-version "1.4.0")
+(pkg-exists-p "pango" :atleast-version "1.4.0" :error t)
 
 
 (defsystem pango
-    :depends-on (glib)
+    :depends-on (gffi glib)
     :components ((:library "libpango-1.0" :libdir #.(pkg-variable "pango" "libdir"))
                 (:library "libpangoxft-1.0" :libdir #.(pkg-variable "pango" "libdir"))
                 (:library "libpangoft2-1.0" :libdir #.(pkg-variable "pango" "libdir"))
index b08b28c601854770603a41b9856c570df1dddabc..6547619cf0fd1f2ee31605521e52d18de527aea2 100644 (file)
@@ -6,11 +6,11 @@
 
 (in-package "RSVG-SYSTEM")
 
-(pkg-exists-p "librsvg-2.0" :atleast-version "2.13.93")
+(pkg-exists-p "librsvg-2.0" :atleast-version "2.13.93" :error t)
 
 
 (defsystem rsvg
-    :depends-on (glib gdk cairo)
+    :depends-on (gffi glib gdk cairo)
     :components ((:library "librsvg-2" 
                  :libdir #.(pkg-variable "librsvg-2.0" "libdir"))
                 (:file "defpackage")