From: Kevin M. Rosenberg Date: Tue, 22 Oct 2002 16:04:48 +0000 (+0000) Subject: r3142: *** empty log message *** X-Git-Url: http://git.kpe.io/?p=ptester.git;a=commitdiff_plain;h=9ad0cc72d087aa4487fa4443c8a9c3a41f947d05 r3142: *** empty log message *** --- diff --git a/debian/changelog b/debian/changelog index f86df13..563d33f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Tue, 22 Oct 2002 09:47:02 -0600 + cl-tester (1.1.1-2) unstable; urgency=high * Fix common-lisp-controller depends diff --git a/debian/tester.asd b/debian/tester.asd index ee789d4..fabb004 100644 --- a/debian/tester.asd +++ b/debian/tester.asd @@ -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*)))