X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=hyperobject.asd;h=2e0bc225c5a75e8ddf72e17937d3ce2920205d34;hb=9d3930d7b2bacd5327ce55ad9fb0ce1392fe746b;hp=50063cd9a4cfee99133c010214160f6c6f3a64f0;hpb=516272144b06d6a8a96a1a4f7b38bbaf410f2f14;p=hyperobject.git diff --git a/hyperobject.asd b/hyperobject.asd index 50063cd..2e0bc22 100644 --- a/hyperobject.asd +++ b/hyperobject.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: hyperobject.asd,v 1.1 2002/11/03 19:59:10 kevin Exp $ +;;;; $Id: hyperobject.asd,v 1.8 2002/11/25 04:47:23 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; ************************************************************************* @@ -19,12 +19,14 @@ (pushnew :hyperobject cl:*features*)) :components ((:file "package") - (:file "hyperobject" :depends-on ("package"))) - :depends-on (:kmrcl)) + #+(or allegro lispworks sbcl cmu scl) + (:file "hyperobject" :depends-on ("package")) + #+(or allegro lispworks sbcl cmu scl) + (:file "views" :depends-on ("hyperobject")) + #+(or allegro lispworks sbcl cmu scl) + (:file "base-class" :depends-on ("views")) + (:file "hyperobject-no-mop" :depends-on ("package")) + ) + :depends-on (:kmrcl)) -(when (ignore-errors (find-class 'load-compiled-op)) - (defmethod perform :after ((op load-compiled-op) - (c (eql (find-system :hyperobject)))) - (pushnew :hyperobject cl:*features*))) -