Sat Jan 23 00:19:32 UTC 2010 pix@kepibu.org * DTRT when asdf-system-connections is available diff -rN -u old-cl-unification/cl-unification.asd new-cl-unification/cl-unification.asd --- old-cl-unification/cl-unification.asd 2013-08-03 18:09:34.000000000 +0000 +++ new-cl-unification/cl-unification.asd 2013-08-03 18:09:34.000000000 +0000 @@ -10,6 +10,9 @@ (in-package "CL-UNIFICATION-SYSTEM") +(when (asdf:find-system 'asdf-system-connections nil) + (asdf:oos 'asdf:load-op 'asdf-system-connections)) + (defclass asdf-system-definition-file (asdf:cl-source-file) ()) (defmethod source-file-type ((c asdf-system-definition-file) (s module)) "asd") @@ -37,4 +40,10 @@ "cl-unification-lib") )) +#+asdf-system-connections +(asdf:defsystem-connection cl-unification+cl-ppcre + :requires (:cl-ppcre :cl-unification) + :components ((:module "lib-dependent" + :components ((:file "cl-ppcre-template"))))) + ;;;; end of file -- cl-unification.asd --