chiark / gitweb /
Fixed ref counting problem when reading the icon-list slot in windows
[clg] / atk / atk.asd
index f974d75a5d322704aea8f0699784938ae36092ba..e46949b0eaf354861867497096b867b08e6ac7c6 100644 (file)
@@ -1,7 +1,7 @@
 ;;; -*- Mode: lisp -*-
 
 (defpackage "ATK-SYSTEM"
-  (:use "COMMON-LISP" "ASDF" "PKG-CONFIG" "SHAREDLIB"))
+  (:use "COMMON-LISP" "ASDF" "PKG-CONFIG"))
 
 
 (in-package "ATK-SYSTEM")
@@ -10,7 +10,9 @@
 
 
 (defsystem atk
-    :depends-on (glib)
-    :components ((:file "defpackage")
-                (:file "atk" :depends-on ("defpackage"))
+    :depends-on (glib gdk)
+    :components ((:library "libatk-1.0"
+                          :libdir #.(pkg-variable "atk" "libdir"))
+                (:file "defpackage")
+                (:file "atk" :depends-on ("defpackage" "libatk-1.0"))
                 (:file "export" :depends-on ("atk"))))