X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=blobdiff_plain;f=kmrcl.asd;h=90afbe68a30791f1d25ef5a4599214ce79158006;hp=8fafc8aee70875f029aeec051425a69a772acd5b;hb=a377884abb0f3f36a67d335214bf2936b7c32070;hpb=c61966ea4ea1f60f5d093c6112543fabed399b97 diff --git a/kmrcl.asd b/kmrcl.asd index 8fafc8a..90afbe6 100644 --- a/kmrcl.asd +++ b/kmrcl.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: kmrcl.asd,v 1.33 2003/06/18 01:00:52 kevin Exp $ +;;;; $Id: kmrcl.asd,v 1.37 2003/06/25 20:28:08 kevin Exp $ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -20,7 +20,7 @@ (defpackage #:kmrcl-system (:use #:asdf #:cl)) (in-package #:kmrcl-system) -#+(or allegro cmu lispworks sbcl scl) +#+(or allegro cmu lispworks sbcl scl openmcl) (pushnew :kmr-mop cl:*features*) (defsystem kmrcl @@ -32,6 +32,7 @@ :components ((:file "package") + (:file "ifstar" :depends-on ("package")) (:file "macros" :depends-on ("package")) (:file "functions" :depends-on ("macros")) (:file "lists" :depends-on ("macros")) @@ -45,7 +46,6 @@ (:file "symbols" :depends-on ("macros")) (:file "datetime" :depends-on ("macros")) (:file "math" :depends-on ("macros")) - (:file "assoc" :depends-on ("macros")) #+kmr-mop (:file "mop" :depends-on ("macros")) #+kmr-mop (:file "attrib-class" :depends-on ("seqs" "mop")) (:file "equal" :depends-on ("macros" #+kmr-mop "mop")) @@ -53,8 +53,7 @@ (:file "xml-utils" :depends-on ("macros"))) ) -#+(or allegro lispworks sbcl cmu scl) -(defmethod perform ((o test-op) (c (eql (find-system :kmrcl)))) +(defmethod perform ((o test-op) (c (eql (find-system 'kmrcl)))) (operate 'load-op 'kmrcl-tests) (operate 'test-op 'kmrcl-tests))