X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=blobdiff_plain;f=kmrcl.asd;h=947b33aa6e9454a4b3746927ba3870bcdd108e18;hp=af360d8d7eb61cab6501b525fc24e09a11652324;hb=298d0534004c26eb5a6881ea34658f59e180b63b;hpb=b7af043786744aaf0b67a5ee6f4d42a647dc738d diff --git a/kmrcl.asd b/kmrcl.asd index af360d8..947b33a 100644 --- a/kmrcl.asd +++ b/kmrcl.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: kmrcl.asd,v 1.26 2003/04/29 00:23:21 kevin Exp $ +;;;; $Id: kmrcl.asd,v 1.29 2003/04/29 04:56:58 kevin Exp $ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -19,7 +19,8 @@ (defpackage #:kmrcl-system (:use #:asdf #:cl)) (in-package #:kmrcl-system) -#+(or allegro cmucl lispworks sbcl scl) (pushnew :kmr-mop cl:*features*) +#+(or allegro cmu lispworks sbcl scl) +(pushnew :kmr-mop cl:*features*) (defsystem kmrcl :name "kmrcl" @@ -37,7 +38,6 @@ (:file "io" :depends-on ("macros")) (:file "console" :depends-on ("macros")) (:file "strings" :depends-on ("macros")) - (:file "equal" :depends-on ("macros")) (:file "buff-input" :depends-on ("macros")) (:file "telnet-server" :depends-on ("macros")) (:file "random" :depends-on ("macros")) @@ -46,6 +46,7 @@ (:file "math" :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")) (:file "web-utils" :depends-on ("macros")) (:file "xml-utils" :depends-on ("macros"))) ) @@ -55,5 +56,3 @@ (oos 'load-op 'kmrcl-tests) (oos 'test-op 'kmrcl-tests)) -#+kmr-mop -(setq cl:*features* (delete :kmr-mop cl:*features*))