r2894: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 30 Sep 2002 02:46:09 +0000 (02:46 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 30 Sep 2002 02:46:09 +0000 (02:46 +0000)
debian/changelog
src-main/aggregates.cl
src-main/primitives.cl

index a013603d930335a40d69d975c1378fb4c2696ab5..a5881c09c2c7a9d2aecfa2b3c794fdd53e817123 100644 (file)
@@ -1,6 +1,7 @@
 cl-uffi (0.8.6-1) unstable; urgency=low
 
   * Fix :pointer-self for OpenMCL.
+  * Multiple changes to support OpenMCL with CLSQL
 
  -- Kevin M. Rosenberg <kmr@debian.org>  Sun, 29 Sep 2002 14:14:01 -0600
 
index 5e4e132840334d2ce91af7899a8077e6fbe9ab91..e4e96f2bfd974afe8ea02cd8a8cfd60ac62102c3 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: aggregates.cl,v 1.3 2002/09/30 01:57:32 kevin Exp $
+;;;; $Id: aggregates.cl,v 1.4 2002/09/30 02:45:24 kevin Exp $
 ;;;;
 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
@@ -121,5 +121,3 @@ of the enum-name name, separator-string, and field-name"
   #+cmu
   `(alien:def-alien-type ,name (alien:union ,name ,@(process-struct-fields name fields)))
 )
-
-
index 05317700ef4ce48fab4c78997b8b493bcb18109a..08ef00b6fd8b7fa5c7d467740a69a849d3769648 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: primitives.cl,v 1.2 2002/09/30 01:57:32 kevin Exp $
+;;;; $Id: primitives.cl,v 1.3 2002/09/30 02:45:24 kevin Exp $
 ;;;;
 ;;;; This file, part of UFFI, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
@@ -194,7 +194,7 @@ supports takes advantage of this optimization."
         (convert-from-uffi-type (cadr type) context))
        (:struct-pointer
         #+openmcl `(:* (:struct ,(convert-from-uffi-type (cadr type) :struct)))
-        #-openmcl `(* ,(convert-from-uffi-type (cadr type) :struct))
+        #-openmcl (convert-from-uffi-type (list '* (cadr type)) :struct)
         )
        (:struct
         #+openmcl `(:struct ,(convert-from-uffi-type (cadr type) :struct))
@@ -204,9 +204,3 @@ supports takes advantage of this optimization."
         (cons (convert-from-uffi-type (first type) context) 
               (convert-from-uffi-type (rest type) context)))))))
 
-
-
-
-
-
-