X-Git-Url: http://git.kpe.io/?p=hyperobject.git;a=blobdiff_plain;f=package.lisp;h=f38c860200e2d79a45b92f03ae7430dc86984e63;hp=94de26b89d317ad4e29addf81be239f10fabe9b0;hb=84f0745468d57540f972b31c230f1ccae2bc1768;hpb=1683d930d3aeb8322f779272ed013651cea0b229 diff --git a/package.lisp b/package.lisp index 94de26b..f38c860 100644 --- a/package.lisp +++ b/package.lisp @@ -7,15 +7,12 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: package.lisp,v 1.41 2003/04/12 03:30:52 kevin Exp $ +;;;; $Id$ ;;;; -;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg +;;;; This file is Copyright (c) 2000-2003 by Kevin M. Rosenberg ;;;; ************************************************************************* -(eval-when (:compile-toplevel :execute) - (declaim (optimize (speed 2) (safety 2) (compilation-speed 0) (debug 2)))) - -(in-package :cl-user) +(in-package #:cl-user) #+sbcl (eval-when (:compile-toplevel :load-toplevel :execute) @@ -23,13 +20,23 @@ (pushnew :kmr-sbcl-mop cl:*features*) (pushnew :kmr-sbcl-pcl cl:*features*))) +#+cmu +(eval-when (:compile-toplevel :load-toplevel :execute) + (if (eq (symbol-package 'pcl:find-class) + (find-package 'common-lisp)) + (pushnew :kmr-cmucl-mop cl:*features*) + (pushnew :kmr-cmucl-pcl cl:*features*))) + (defpackage #:hyperobject (:nicknames #:ho) (:use #:common-lisp #:kmrcl #+kmr-sbcl-mop #:sb-mop + #+kmr-cmucl-mop #:mop #+allegro #:mop - #+lispworks #:clos) + #+lispworks #:clos + #+scl #:clos + #+openmcl #:openmcl-mop) (:export #:package #:hyperobject @@ -37,8 +44,11 @@ #:hyperobject-class-user-name #:load-all-subobjects #:view + #:view-subobjects #:fmt-comma-integer #:processed-queued-definitions + #:all-subobjects + #:subobjects )) (defpackage #:hyperobject-user @@ -64,28 +74,26 @@ sb-pcl::compute-effective-slot-definition-initargs sb-pcl::slot-value-using-class sb-pcl:class-prototype sb-pcl:generic-function-method-class sb-pcl:intern-eql-specializer - sb-pcl:make-method-lambda) - #+cmu - '(pcl:class-of pcl:class-name pcl:class-slots pcl:find-class pcl::standard-class - pcl::slot-definition-name pcl:finalize-inheritance - pcl::standard-direct-slot-definition pcl::standard-effective-slot-definition - pcl::validate-superclass pcl:direct-slot-definition-class - pcl:compute-effective-slot-definition - pcl::compute-effective-slot-definition-initargs - pcl::slot-value-using-class - pcl:class-prototype pcl:generic-function-method-class pcl:intern-eql-specializer - pcl:make-method-lambda) - #+scl - '(clos:class-slots clos::standard-class - clos::slot-definition-name clos:finalize-inheritance - clos::standard-direct-slot-definition clos::standard-effective-slot-definition - clos::validate-superclass clos:direct-slot-definition-class - clos:compute-effective-slot-definition - clos::compute-effective-slot-definition-initargs - clos::slot-value-using-class - clos::class-prototype clos:generic-function-method-class - ;; note: make-method-lambda is not fbound - clos:intern-eql-specializer clos:make-method-lambda) + sb-pcl:make-method-lambda sb-pcl:generic-function-lambda-list + sb-pcl::class-precedence-list) + #+kmr-cmucl-mop + '(pcl::compute-effective-slot-definition-initargs) + #+kmr-cmucl-pcl + '(pcl:class-of pcl:class-name pcl:class-slots pcl:find-class pcl::standard-class + pcl::slot-definition-name pcl:finalize-inheritance + pcl::standard-direct-slot-definition pcl::standard-effective-slot-definition + pcl::validate-superclass pcl:direct-slot-definition-class + pcl:compute-effective-slot-definition + pcl::compute-effective-slot-definition-initargs + pcl::slot-value-using-class + pcl:class-prototype pcl:generic-function-method-class pcl:intern-eql-specializer + pcl:make-method-lambda pcl:generic-function-lambda-list + pcl::class-precedence-list) + #+scl + '(clos::compute-effective-slot-definition-initargs + clos::class-prototype + ;; note: make-method-lambda is not fbound + ) :hyperobject)) @@ -95,4 +103,8 @@ (setq cl:*features* (delete :kmr-sbcl-mop cl:*features*)) (setq cl:*features* (delete :kmr-sbcl-pcl cl:*features*)))) - +#+cmu +(eval-when (:compile-toplevel :load-toplevel :execute) + (if (find-package 'mop) + (setq cl:*features* (delete :kmr-cmucl-mop cl:*features*)) + (setq cl:*features* (delete :kmr-cmucl-pcl cl:*features*))))