X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/18ffc6e0ec7b51a8393c6428857084c0fb886c76..39db92d4c022a59439fb7d52345386c3d5fff07a:/gtk/gtk.asd diff --git a/gtk/gtk.asd b/gtk/gtk.asd index 853583b..d7359a0 100644 --- a/gtk/gtk.asd +++ b/gtk/gtk.asd @@ -9,6 +9,11 @@ (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*)) (defsystem gtk :depends-on (glib gdk pango atk) @@ -27,7 +32,8 @@ (:file "gtktree" :depends-on ("gtktypes")) (:file "gtktext" :depends-on ("gtktypes")) (:file "gtkaction" :depends-on ("gtktypes")) + (:file "gtkselection" :depends-on ("gtktypes")) (:file "gtkstyle" :depends-on ("gtktypes")) (:file "gtk" :depends-on ("gtktypes")) (:file "gtkutils" :depends-on ("gtk")) - (:file "export" :depends-on ("gtktypes" "gtk")))) + (:file "export" :depends-on ("gtktypes" "gtkwidget" "gtkcontainer" "gtk" "gtktree" "gtkaction" "gtkselection" "gtkutils" "gtkstyle"))))