r2787: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 20 Sep 2002 06:40:56 +0000 (06:40 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 20 Sep 2002 06:40:56 +0000 (06:40 +0000)
debian/changelog
lml.asd

index 48f919d198dfc88d3356c0fba27f03c96b128202..1cbecac708eb6e2efcb76dcf4c5f0b8b3cba2f58 100644 (file)
@@ -1,3 +1,15 @@
+cl-lml (1.0.7-1) unstable; urgency=low
+
+  * Fix broken upstream source
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Fri, 20 Sep 2002 00:25:49 -0600
+
+cl-lml (1.0.6-1) unstable; urgency=low
+
+  * Add support for pushing :lml onto features when using 'load-compiled-op
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Thu, 19 Sep 2002 23:26:51 -0600
+
 cl-lml (1.0.5-1) unstable; urgency=low
 
   * Update .asd file
diff --git a/lml.asd b/lml.asd
index fadf607ce6622369618908c307b9032397c640b3..0e5c4b5ae7178406b9338e3990c4a6afb9c2c3c0 100644 (file)
--- a/lml.asd
+++ b/lml.asd
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Aug 2002
 ;;;;
-;;;; $Id: lml.asd,v 1.8 2002/09/19 23:32:37 kevin Exp $
+;;;; $Id: lml.asd,v 1.9 2002/09/20 06:37:38 kevin Exp $
 ;;;;
 ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
@@ -21,7 +21,7 @@
 (defsystem :lml
   :name "cl-lml"
   :author "Kevin M. Rosenberg <kmr@debian.org>"
-  :version "1.0.5"
+  :version "1.0.7"
   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
   :licence "GNU General Public License"
   :description "Lisp Markup Language"
@@ -41,3 +41,7 @@
 
 (defmethod source-file-type  ((c cl-source-file) (s (eql (find-system 'lml)))) 
    "cl")
+
+(when (ignore-errors (find-class 'load-compiled-op))
+  (defmethod perform :after ((op load-compiled-op) (c (eql (find-system :lml))))
+    (pushnew :lml cl:*features*)))