r3142: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 22 Oct 2002 16:04:48 +0000 (16:04 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 22 Oct 2002 16:04:48 +0000 (16:04 +0000)
debian/changelog
debian/tester.asd

index f86df130142579b981f6c362b92ef04c097e280f..563d33f355c4ca21d1ac8795dc22865b82ac8a54 100644 (file)
@@ -1,3 +1,10 @@
+cl-tester (1.1.1-3) unstable; urgency=low
+
+  * Improve loading on Allegro systems: (require :tester) on Allegro systems
+  now loads the Allegro supplied product.
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Tue, 22 Oct 2002 09:47:02 -0600
+
 cl-tester (1.1.1-2) unstable; urgency=high
 
   * Fix common-lisp-controller depends
index ee789d4c375c4ca9cc42c947f59a2ca839a71655..fabb0049a17d4275d1530969869710d55e0963b3 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Sep 2002
 ;;;;
-;;;; $Id: tester.asd,v 1.2 2002/09/30 10:16:25 kevin Exp $
+;;;; $Id: tester.asd,v 1.3 2002/10/22 16:04:48 kevin Exp $
 ;;;;
 ;;;; This file, part of cl-tester, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
@@ -18,6 +18,7 @@
 
 (in-package :asdf)
 
+#-allegro
 (defsystem :tester
   :name "cl-tester"
   :author "Kevin Layer, Franz, Inc"
@@ -33,6 +34,7 @@
   :components
   ((:file "tester")))
 
+#-allegro
 (when (ignore-errors (find-class 'load-compiled-op))
   (defmethod perform :after ((op load-compiled-op) (c (eql (find-system :tester))))
     (pushnew :tester cl:*features*)))