X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=package.lisp;h=9d9a718999438a95927eb12d9fcda1213eb0c9ee;hb=74c8b003fd6af6e12831094b785a7d592f060c6c;hp=dbc22cc7ee294baa0dbe6613eb227aaa6d83b5db;hpb=409c40b1221545d7230f6e812921d441ba2d5f89;p=hyperobject.git diff --git a/package.lisp b/package.lisp index dbc22cc..9d9a718 100644 --- a/package.lisp +++ b/package.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: package.lisp,v 1.37 2003/03/31 14:15:08 kevin Exp $ +;;;; $Id: package.lisp,v 1.42 2003/04/15 05:18:22 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; ************************************************************************* @@ -26,7 +26,10 @@ (defpackage #:hyperobject (:nicknames #:ho) - (:use #:common-lisp #:kmrcl #+kmr-sbcl-mop "SB-MOP") + (:use #:common-lisp #:kmrcl + #+kmr-sbcl-mop #:sb-mop + #+allegro #:mop + #+lispworks #:clos) (:export #:package #:hyperobject @@ -46,22 +49,11 @@ (eval-when (:compile-toplevel :load-toplevel :execute) (shadowing-import #+allegro - '(mop::class-slots mop::slot-definition-name mop:finalize-inheritance - mop::standard-direct-slot-definition mop::standard-effective-slot-definition - mop:direct-slot-definition-class mop:compute-effective-slot-definition - excl::compute-effective-slot-definition-initargs - mop:slot-value-using-class - mop:class-prototype mop:generic-function-method-class mop:intern-eql-specializer - mop:make-method-lambda) + '(excl::compute-effective-slot-definition-initargs) #+lispworks - '(clos:class-slots clos::slot-definition-name clos:finalize-inheritance - clos::standard-direct-slot-definition clos::standard-effective-slot-definition - clos:direct-slot-definition-class clos:compute-effective-slot-definition - clos::compute-effective-slot-definition-initargs - clos:slot-value-using-class clos:make-method-lambda) + '(clos::compute-effective-slot-definition-initargs) #+kmr-sbcl-mop - '(sb-pcl::compute-effective-slot-definition-initargs - ) + '(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 sb-pcl::standard-class @@ -72,7 +64,7 @@ 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) + sb-pcl:make-method-lambda sb-pcl:generic-function-lambda-list) #+cmu '(pcl:class-of pcl:class-name pcl:class-slots pcl:find-class pcl::standard-class pcl::slot-definition-name pcl:finalize-inheritance @@ -82,7 +74,7 @@ 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:make-method-lambda pcl:generic-function-lambda-list) #+scl '(clos:class-slots clos::standard-class clos::slot-definition-name clos:finalize-inheritance @@ -92,7 +84,9 @@ clos::compute-effective-slot-definition-initargs clos::slot-value-using-class clos::class-prototype clos:generic-function-method-class - clos:intern-eql-specializer clos:make-method-lambda) + ;; note: make-method-lambda is not fbound + clos:intern-eql-specializer clos:make-method-lambda + clos:generic-function-lambda-list) :hyperobject))