Wed Apr 15 10:06:40 UTC 2009 mantoniotti * Fixed a few snags and added "lib-dependent" module. 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-24 17:42:11.000000000 +0000 +++ new-cl-unification-1/cl-unification.asd 2013-07-24 17:42:11.000000000 +0000 @@ -13,6 +13,12 @@ (:file "templates-hierarchy") (:file "unifier") (:file "match-block") - (:file "apply-substitution"))) + (:file "apply-substitution") + (:module "lib-dependent" + :depends-on ("templates-hierarchy" "unifier") + :components ( + #+cl-ppcre + (:file "cl-ppcre-template") + )))) ;;;; end of file -- cl-unification.asd -- diff -rN -u old-cl-unification-1/cl-unification.system new-cl-unification-1/cl-unification.system --- old-cl-unification-1/cl-unification.system 2013-07-24 17:42:11.000000000 +0000 +++ new-cl-unification-1/cl-unification.system 2013-07-24 17:42:11.000000000 +0000 @@ -12,6 +12,13 @@ "templates-hierarchy" "unifier" "match-block" - "apply-substitution")) + "apply-substitution" + (:module "lib-dependent" + :depends-on ("templates-hierarchy" "unifier") + :components ( + #+cl-ppcre + (:file "cl-ppcre-template") + )) + )) ;;; end of file -- cl-unification.system --