X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/0a5ee61b2d70bf13804edaea7e68f44cd5934093..b1bd926714a41589d68b83d72d511fb91655c48d:/atk/atk.asd diff --git a/atk/atk.asd b/atk/atk.asd index 67e9b60..e46949b 100644 --- a/atk/atk.asd +++ b/atk/atk.asd @@ -1,17 +1,18 @@ ;;; -*- Mode: lisp -*- (defpackage "ATK-SYSTEM" - (:use "COMMON-LISP" "ASDF" "PKG-CONFIG" "SHAREDLIB")) + (:use "COMMON-LISP" "ASDF" "PKG-CONFIG")) (in-package "ATK-SYSTEM") (pkg-exists-p "atk" :atleast-version "1.6.0") -(sharedlib:load-shared-library "libatk-1.0") (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"))))