From 8dda0948178cf57da5cd7c67e5ae7abe8105f2a9 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Tue, 25 Mar 2003 14:28:53 +0000 Subject: [PATCH] r4253: Auto commit for Debian build --- package.lisp | 29 +++++++++++++++-------------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/package.lisp b/package.lisp index fa81ec0..3693970 100644 --- a/package.lisp +++ b/package.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: package.lisp,v 1.31 2003/03/25 14:21:21 kevin Exp $ +;;;; $Id: package.lisp,v 1.32 2003/03/25 14:28:53 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 :kmr-sbcl-mop cl:*features*) - (pushnew :kmr-sbcl-pcl cl:*features*))) (eval-when (:compile-toplevel :load-toplevel :execute) (shadowing-import @@ -55,13 +57,12 @@ clos::compute-effective-slot-definition-initargs clos:slot-value-using-class) #+kmr-sbcl-mop - '(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) + '(sb-pcl:slot-definition-name sb-pcl:finalize-inheritance + sb-pcl::standard-direct-slot-definition + sb-pcl::standard-effective-slot-definition sb-pcl:validate-superclass + 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) #+kmr-sbcl-pcl '(sb-pcl:class-of sb-pcl:class-name sb-pcl:class-slots sb-pcl:find-class sb-pcl::standard-class -- 2.34.1