From 9ffb13c07b7eb1f21f1136f7ea6fd807fa85634b Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Sun, 29 Sep 2002 17:50:07 +0000 Subject: [PATCH] r2886: *** empty log message *** --- debian/changelog | 6 ++++++ src-mcl/libraries.cl | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 25ff31a..daf8930 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-uffi (0.8.4-1) unstable; urgency=low + + * Change mcl's load-library definition from macro to function + + -- Kevin M. Rosenberg Sun, 29 Sep 2002 11:49:32 -0600 + cl-uffi (0.8.3-1) unstable; urgency=low * New upstream release. Passes all tests with OpenMCL in Debian PPC. diff --git a/src-mcl/libraries.cl b/src-mcl/libraries.cl index ad6497d..8495d55 100644 --- a/src-mcl/libraries.cl +++ b/src-mcl/libraries.cl @@ -7,7 +7,7 @@ ;;;; Programmers: Kevin M. Rosenberg and John DeSoi ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: libraries.cl,v 1.2 2002/09/20 04:51:14 kevin Exp $ +;;;; $Id: libraries.cl,v 1.3 2002/09/29 17:50:07 kevin Exp $ ;;;; ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; and John DeSoi @@ -35,7 +35,7 @@ ; Note we are not dealing with OpenMCL's ability to close the library ; As of v0.13 .dylibs can't be closed but bundles can. See the docs for the latest. #+openmcl -(defmacro load-foreign-library (filename &key module supporting-libraries force-load) +(defun load-foreign-library (filename &key module supporting-libraries force-load) (declare (ignore module supporting-libraries force-load)) `(let ((path (if (pathnamep ,filename) (namestring ,filename) ,filename))) (when (stringp path) @@ -99,4 +99,4 @@ library type if type is not specified." - \ No newline at end of file + -- 2.34.1