r4299: Auto commit for Debian build
[hyperobject.git] / package.lisp
index 6c76fb9f13b34111b0fb87d79acd944b0f0f8dc9..dbc22cc7ee294baa0dbe6613eb227aaa6d83b5db 100644 (file)
@@ -1,4 +1,4 @@
-;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
 ;;;; *************************************************************************
 ;;;; FILE IDENTIFICATION
 ;;;;
@@ -7,42 +7,99 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: package.lisp,v 1.5 2002/11/22 10:49:24 kevin Exp $
+;;;; $Id: package.lisp,v 1.37 2003/03/31 14:15:08 kevin Exp $
 ;;;;
 ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg
 ;;;; *************************************************************************
 
-(declaim (optimize (debug 3) (speed 3) (safety 1) (compilation-speed 0)))
+(eval-when (:compile-toplevel :execute)
+  (declaim (optimize (speed 2) (safety 2) (compilation-speed 0) (debug 2))))
 
 (in-package :cl-user)
 
-(defpackage #:hyperobject-mop
-  (:nicknames #:ho-mop)
-  (:use #:common-lisp #:kmrcl)
-  (:export
-   #:hyperobject
-   #:hyperobject-class
-   #:hyperobject-base-url!
-   #:hyperobject-class-title
-   #:load-all-subobjects
-   #:print-hyperobject
-   ))
+#+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
-   #:define-hyperobject
+   #:package
    #:hyperobject
-   #:hyperobject-base-url!
+   #:hyperobject-class
+   #:hyperobject-class-user-name
    #:load-all-subobjects
-   #:print-hyperobject
+   #:view
+   #:fmt-comma-integer
+   #:processed-queued-definitions
    ))
 
-(defpackage #:hyperobject-mop-user
-  (:use #:hyperobject-mop #:cl #:cl-user))
-
-
 (defpackage #:hyperobject-user
+  (:nicknames #:ho-user)
   (:use #:hyperobject #:cl #:cl-user))
 
+
+(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)
+   #+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)
+   #+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
+     sb-pcl::standard-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
+     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
+    clos:intern-eql-specializer clos:make-method-lambda)
+  
+   :hyperobject))
+
+#+sbcl
+(eval-when (:compile-toplevel :load-toplevel :execute)
+  (if (find-package 'sb-mop)
+      (setq cl:*features* (delete :kmr-sbcl-mop cl:*features*))
+      (setq cl:*features* (delete :kmr-sbcl-pcl cl:*features*))))
+
+