From 9b994f7d44e02938af12bdcc62f2c4fddfd0afd0 Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Mon, 30 Sep 2002 02:46:09 +0000 Subject: [PATCH] r2894: *** empty log message *** --- debian/changelog | 1 + src-main/aggregates.cl | 4 +--- src-main/primitives.cl | 10 ++-------- 3 files changed, 4 insertions(+), 11 deletions(-) diff --git a/debian/changelog b/debian/changelog index a013603..a5881c0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Sun, 29 Sep 2002 14:14:01 -0600 diff --git a/src-main/aggregates.cl b/src-main/aggregates.cl index 5e4e132..e4e96f2 100644 --- a/src-main/aggregates.cl +++ b/src-main/aggregates.cl @@ -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))) ) - - diff --git a/src-main/primitives.cl b/src-main/primitives.cl index 0531770..08ef00b 100644 --- a/src-main/primitives.cl +++ b/src-main/primitives.cl @@ -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))))))) - - - - - - -- 2.34.1