X-Git-Url: http://git.kpe.io/?p=hyperobject.git;a=blobdiff_plain;f=package.lisp;h=509b34e3abd219b67ccda83fb013d326dab42dfc;hp=f23c72e7a6a739bd0eea4b750edd63c556993cb7;hb=a88591e62595d2d25d5e6cfd29064d107c8b6b73;hpb=04f829aab1e5caaefe60391f756e7a5db2d1282b diff --git a/package.lisp b/package.lisp index f23c72e..509b34e 100644 --- a/package.lisp +++ b/package.lisp @@ -7,15 +7,12 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: package.lisp,v 1.46 2003/05/14 05:29:48 kevin Exp $ +;;;; $Id$ ;;;; ;;;; 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) @@ -26,7 +23,7 @@ #+cmu (eval-when (:compile-toplevel :load-toplevel :execute) (if (eq (symbol-package 'pcl:find-class) - (find-package 'common-lisp)) + (find-package 'common-lisp)) (pushnew :kmr-cmucl-mop cl:*features*) (pushnew :kmr-cmucl-pcl cl:*features*))) @@ -34,11 +31,12 @@ (defpackage #:hyperobject (:nicknames #:ho) (:use #:common-lisp #:kmrcl - #+kmr-sbcl-mop #:sb-mop - #+kmr-cmucl-mop #:mop - #+allegro #:mop - #+lispworks #:clos - #+scl #:clos) + #+kmr-sbcl-mop #:sb-mop + #+kmr-cmucl-mop #:mop + #+allegro #:mop + #+lispworks #:clos + #+scl #:clos + #+openmcl #:openmcl-mop) (:export #:package #:hyperobject @@ -46,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 @@ -61,7 +62,7 @@ '(excl::compute-effective-slot-definition-initargs) #+lispworks '(clos::compute-effective-slot-definition-initargs) - #+kmr-sbcl-mop + #+kmr-sbcl-mop '(sb-pcl::compute-effective-slot-definition-initargs) #+kmr-sbcl-pcl '(sb-pcl:class-of sb-pcl:class-name sb-pcl:class-slots sb-pcl:find-class @@ -72,9 +73,11 @@ sb-pcl::direct-slot-definition-class sb-pcl::compute-effective-slot-definition sb-pcl::compute-effective-slot-definition-initargs sb-pcl::slot-value-using-class + sb-pcl:slot-definition-type sb-pcl:class-prototype sb-pcl:generic-function-method-class sb-pcl:intern-eql-specializer - sb-pcl:make-method-lambda sb-pcl:generic-function-lambda-list) - #+kmr-cmucl-mop + 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 @@ -85,13 +88,29 @@ 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:make-method-lambda pcl:generic-function-lambda-list + pcl:slot-definition-type + pcl::class-precedence-list) + #+clisp + '(clos:class-name clos:class-slots clos:find-class 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:effective-slot-definition-class + clos:slot-definition-type + clos:compute-effective-slot-definition + clos::compute-effective-slot-definition-initargs + clos::slot-value-using-class + clos:class-prototype clos:generic-function-method-class clos:intern-eql-specializer + clos:generic-function-lambda-list + clos::class-precedence-list) #+scl '(clos::compute-effective-slot-definition-initargs clos::class-prototype + clos:slot-definition-type ;; note: make-method-lambda is not fbound ) - + :hyperobject)) #+sbcl