From dc9f3ec2fc1537d7b3aa0a0444ae50af93a68541 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Tue, 24 Jun 2003 08:32:32 +0000 Subject: [PATCH] r5184: *** empty log message *** --- hyperobject.asd | 6 +++--- mop.lisp | 10 +++++----- package.lisp | 5 +++-- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/hyperobject.asd b/hyperobject.asd index ff19326..7f00def 100644 --- a/hyperobject.asd +++ b/hyperobject.asd @@ -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 " @@ -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)) diff --git a/mop.lisp b/mop.lisp index 0a6f6f1..1bd40d7 100644 --- a/mop.lisp +++ b/mop.lisp @@ -11,7 +11,7 @@ ;;;; in Text, HTML, and XML formats. This includes hyperlinking ;;;; capability and sub-objects. ;;;; -;;;; $Id: mop.lisp,v 1.78 2003/06/20 08:50:38 kevin Exp $ +;;;; $Id: mop.lisp,v 1.79 2003/06/24 08:32:32 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2003 by Kevin M. Rosenberg ;;;; ************************************************************************* @@ -149,7 +149,7 @@ (when (and ,required (null value)) (error "hyperobject class slot ~A must have a value" name)) (list name `',value)) - #+(or allegro sbcl cmu scl) + #+(or allegro sbcl cmu scl openmcl) (declare (ignore slot-name required)) ) @@ -390,7 +390,7 @@ SQL name" ':function (compile nil method-lambda) init-args-values))))) -#+(or allegro scl) +#+(or allegro scl openmcl) (progn ;; One entry for each class with lazy readers defined. The value is a plist mapping ;; slot-name to a lazy reader, each of which is a list of a function and slot-names. @@ -419,7 +419,7 @@ SQL name" (setf (getf (gethash (find-class class-name) *lazy-readers*) slot-name) nil)) - ) ;; #+(or allegro scl) + ) ;; #+(or allegro sc openmcll) (defun finalize-subobjects (cl) @@ -445,7 +445,7 @@ SQL name" `(hyperobject::def-lazy-reader ,(name-class subobject) ,(name-slot subobject) ,(lookup subobject) ,@(lookup-keys subobject))) - #+(or sbcl cmu lispworks allegro scl) + #+(or sbcl cmu lispworks allegro scl openmcl) (apply #'ensure-lazy-reader (name-class subobject) (name-slot subobject) (lookup subobject) (lookup-keys subobject))) diff --git a/package.lisp b/package.lisp index 2cff019..1f00144 100644 --- a/package.lisp +++ b/package.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: package.lisp,v 1.49 2003/06/06 21:59:29 kevin Exp $ +;;;; $Id: package.lisp,v 1.50 2003/06/24 08:32:32 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2003 by Kevin M. Rosenberg ;;;; ************************************************************************* @@ -35,7 +35,8 @@ #+kmr-cmucl-mop #:mop #+allegro #:mop #+lispworks #:clos - #+scl #:clos) + #+scl #:clos + #+openmcl #:openmcl-mop) (:export #:package #:hyperobject -- 2.34.1