r5184: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 24 Jun 2003 08:32:32 +0000 (08:32 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Tue, 24 Jun 2003 08:32:32 +0000 (08:32 +0000)
hyperobject.asd
mop.lisp
package.lisp

index ff1932628c4833ac1e2a18132b63efb344fc19f2..7f00defe165f125b00ad0d735824ff8653e55970 100644 (file)
@@ -7,13 +7,13 @@
 ;;;; Author:        Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: hyperobject.asd,v 1.24 2003/05/22 20:40:03 kevin Exp $
+;;;; $Id: hyperobject.asd,v 1.25 2003/06/24 08:32:32 kevin Exp $
 ;;;; *************************************************************************
 
 (defpackage hyperobject-system (:use #:asdf #:cl))
 (in-package :hyperobject-system)
 
-#+(or allegro lispworks sbcl cmu scl)
+#+(or allegro lispworks sbcl cmu scl openmcl)
 (defsystem hyperobject 
   :name "hyperobject"
   :author "Kevin M. Rosenberg <kevin@rosenberg.net>"
@@ -33,7 +33,7 @@
    )
   :depends-on (:kmrcl :clsql))
 
-#+(or allegro lispworks sbcl cmu scl)
+#+(or allegro lispworks sbcl cmu scl openmcl)
 (defmethod perform ((o test-op) (c (eql (find-system :hyperobject))))
   (oos 'load-op 'hyperobject-tests)
   (oos 'test-op 'hyperobject-tests))
index 0a6f6f1da3fdd7fcc09d63e11f5745aa7e012818..1bd40d7ea3f7645a4eedfee16eddce0f756c6dc5 100644 (file)
--- a/mop.lisp
+++ b/mop.lisp
@@ -11,7 +11,7 @@
 ;;;; in Text, HTML, and XML formats. This includes hyperlinking\r
 ;;;; capability and sub-objects.\r
 ;;;;\r
-;;;; $Id: mop.lisp,v 1.78 2003/06/20 08:50:38 kevin Exp $\r
+;;;; $Id: mop.lisp,v 1.79 2003/06/24 08:32:32 kevin Exp $\r
 ;;;;\r
 ;;;; This file is Copyright (c) 2000-2003 by Kevin M. Rosenberg\r
 ;;;; *************************************************************************\r
       (when (and ,required (null value))\r
        (error "hyperobject class slot ~A must have a value" name))\r
       (list name `',value))\r
-    #+(or allegro sbcl cmu scl)\r
+    #+(or allegro sbcl cmu scl openmcl)\r
     (declare (ignore slot-name required))\r
     )\r
 \r
@@ -390,7 +390,7 @@ SQL name"
                   ':function (compile nil method-lambda)\r
                   init-args-values)))))\r
 \r
-#+(or allegro scl)\r
+#+(or allegro scl openmcl)\r
 (progn\r
   ;; One entry for each class with lazy readers defined.  The value is a plist mapping\r
   ;; slot-name to a lazy reader, each of which is a list of a function and slot-names.\r
@@ -419,7 +419,7 @@ SQL name"
     (setf (getf (gethash (find-class class-name) *lazy-readers*) slot-name)\r
          nil))\r
   \r
-  ) ;; #+(or allegro scl)\r
+  ) ;; #+(or allegro sc openmcll)\r
 \r
 \r
 (defun finalize-subobjects (cl)\r
@@ -445,7 +445,7 @@ SQL name"
                  `(hyperobject::def-lazy-reader ,(name-class subobject)\r
                    ,(name-slot subobject) ,(lookup subobject)\r
                    ,@(lookup-keys subobject)))\r
-                #+(or sbcl cmu lispworks allegro scl)\r
+                #+(or sbcl cmu lispworks allegro scl openmcl)\r
                 (apply #'ensure-lazy-reader \r
                        (name-class subobject) (name-slot subobject)\r
                        (lookup subobject) (lookup-keys subobject)))\r
index 2cff019cefab96be7d7448b22c3a45e1a696c7a1..1f001443d3f9ded10bf3f6b0ca29862e141cacc8 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg\r
 ;;;; Date Started:  Apr 2000\r
 ;;;;\r
-;;;; $Id: package.lisp,v 1.49 2003/06/06 21:59:29 kevin Exp $\r
+;;;; $Id: package.lisp,v 1.50 2003/06/24 08:32:32 kevin Exp $\r
 ;;;;\r
 ;;;; This file is Copyright (c) 2000-2003 by Kevin M. Rosenberg\r
 ;;;; *************************************************************************\r
@@ -35,7 +35,8 @@
        #+kmr-cmucl-mop #:mop\r
        #+allegro #:mop\r
        #+lispworks #:clos\r
-       #+scl #:clos)\r
+       #+scl #:clos\r
+       #+openmcl #:openmcl-mop)\r
   (:export\r
    #:package\r
    #:hyperobject\r