X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=package.lisp;h=e7b92835bce51edd5f406d373e8c94308fda92c0;hb=7db92d95e7d74c430dd0ba0aa41aecaf3eb558d8;hp=b9d924c7004d389aef46b082c5d570ff666bfa4c;hpb=e0a53e9770cbdd4911708f400aa93ad5bdb8fe65;p=hyperobject.git diff --git a/package.lisp b/package.lisp index b9d924c..e7b9283 100644 --- a/package.lisp +++ b/package.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: package.lisp,v 1.27 2003/03/25 06:58:02 kevin Exp $ +;;;; $Id: package.lisp,v 1.33 2003/03/25 16:04:18 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; ************************************************************************* @@ -17,9 +17,16 @@ (in-package :cl-user) +#+sbcl +(eval-when (:compile-toplevel :load-toplevel :execute) + (if (find-package 'sb-mop) + (pushnew :kmr-sbcl-mop cl:*features*) + (pushnew :kmr-sbcl-pcl cl:*features*))) + + (defpackage #:hyperobject (:nicknames #:ho) - (:use #:common-lisp #:kmrcl) + (:use #:common-lisp #:kmrcl #+kmr-sbcl-mop "SB-MOP") (:export #:package #:hyperobject @@ -34,11 +41,6 @@ (:nicknames #:ho-user) (:use #:hyperobject #:cl #:cl-user)) -#+sbcl -(eval-when (:compile-toplevel :load-toplevel :execute) - (if (find-package 'sb-mop) - (pushnew :sb-mop cl:*features*) - (pushnew :sb-acl cl:*features*))) (eval-when (:compile-toplevel :load-toplevel :execute) (shadowing-import @@ -54,16 +56,11 @@ clos:direct-slot-definition-class clos:compute-effective-slot-definition clos::compute-effective-slot-definition-initargs clos:slot-value-using-class) - #+sbcl-mop - '(sb-mop:class-slots - sb-mop::standard-class - sb-mop:slot-definition-name sb-mop:finalize-inheritance - sb-mop::standard-direct-slot-definition - sb-mop::standard-effective-slot-definition sb-mop:validate-superclass - sb-mop:direct-slot-definition-class sb-mop:compute-effective-slot-definition - sb-mop::compute-effective-slot-definition-initargs - sb-mop:slot-value-using-class) - #+sbcl-pcl + #+kmr-sbcl-mop + '(sb-pcl::standard-direct-slot-definition + sb-pcl::standard-effective-slot-definition + 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 sb-pcl:slot-definition-name sb-pcl::finalize-inheritance @@ -94,6 +91,6 @@ #+sbcl (eval-when (:compile-toplevel :load-toplevel :execute) (if (find-package 'sb-mop) - (setq cl:*features* (delete :sb-mop cl:*features*)) - (setq cl:*features* (delete :sb-acl cl:*features*)))) + (setq cl:*features* (delete :kmr-sbcl-mop cl:*features*)) + (setq cl:*features* (delete :kmr-sbcl-pcl cl:*features*))))