DTRT when asdf-system-connections is available
Sat Jan 23 00:19:32 UTC 2010 pix@kepibu.org
* DTRT when asdf-system-connections is available
diff -rN -u old-cl-unification-1/cl-unification.asd new-cl-unification-1/cl-unification.asd
--- old-cl-unification-1/cl-unification.asd 2013-07-19 11:54:28.000000000 +0000
+++ new-cl-unification-1/cl-unification.asd 2013-07-19 11:54:28.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 --