r2886: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 29 Sep 2002 17:50:07 +0000 (17:50 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sun, 29 Sep 2002 17:50:07 +0000 (17:50 +0000)
debian/changelog
src-mcl/libraries.cl

index 25ff31a8aa9cf9262b5dd7ec942e87ee2c0931e1..daf8930e657abef9ad86c02ae1deda5231785f07 100644 (file)
@@ -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 <kmr@debian.org>  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.
index ad6497d1b20cdedcd5cce6d1ee8a2cc949cce370..8495d555aa4427132f2254af518573c9c63a440e 100644 (file)
@@ -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
+