From 5b077de04963f9f0364be35ff5108bbe59d63287 Mon Sep 17 00:00:00 2001 From: Konrad Hinsen Date: Tue, 28 Jan 2020 18:02:27 +0100 Subject: [PATCH] Add cffi-grovel as a system dependency defsystem dependencies are not automatically available to the defined system (see discussion at https://gitlab.common-lisp.net/asdf/asdf/issues/23) --- hdf5-cffi.asd | 2 +- hdf5-cffi.test.asd | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hdf5-cffi.asd b/hdf5-cffi.asd index 7042c46..9f9cbd3 100644 --- a/hdf5-cffi.asd +++ b/hdf5-cffi.asd @@ -17,7 +17,7 @@ :author "Gerd Heber " :license "BSD" :defsystem-depends-on (:cffi-grovel) - :depends-on (:cffi) + :depends-on (:cffi :cffi-grovel) :pathname "src/" :components ((:file "package") diff --git a/hdf5-cffi.test.asd b/hdf5-cffi.test.asd index d88708d..61578d2 100644 --- a/hdf5-cffi.test.asd +++ b/hdf5-cffi.test.asd @@ -17,7 +17,7 @@ :author "Gerd Heber " :license "BSD" :defsystem-depends-on (:cffi-grovel) - :depends-on (:cffi :hdf5-cffi :hdf5-cffi.examples :fiveam) + :depends-on (:cffi :cffi-grovel :hdf5-cffi :hdf5-cffi.examples :fiveam) :components ((:file "t/test")) :perform (test-op :after (op c) (eval (read-from-string "(5am:run! :hdf5-cffi)"))))