Re: UFFI-Devel Digest, Vol 2, Issue 10

Ben <ben-PLN1j/[email protected]> Tue, 31 Aug 2004 14:44:46 -0400 (EDT)
Newsgroups gmane.lisp.uffi.devel
Message-ID <[email protected]>
> From: Marco Baringer <[email protected]>
>
> unless we changed def-struct to define a type name under openmcl, or
> don't assume that a def-struct defines an "immediate" type with the
> corresponding name.

i ran into something like this porting Elephant (my CL object
database) to OpenMCL.  this runs fine on CMUCL, SBCL, Allegro

(def-struct foo ....)
(def-struct bar (slot (* foo)) ...)

but it fails on OpenMCL.  i have to

(ccl:def-foreign-type foo (:struct foo)

is this what you're talking about? - B