r3083: add scl support
[uffi.git] / ChangeLog
1 2002-10-16 Kevin Rosenberg (kevin@rosenberg.net)
2         * Added support for SBCL and SCL
3         
4 2002-09-29 Kevin Rosenberg (kevin@rosenberg.net)
5         * Numerous changes in openmcl support (uffi now supports
6         clsql on openmcl)
7         
8 2002-09-19 Kevin Rosenberg (kevin@rosenberg.net)
9         - Integrate John Desoi's OpenMCL support into src-mcl
10         * examples/Makefile: add section for building on MacOS X (John Desoi)
11         * examples/test-examples: changed from mk: to asdf: package loading (KMR)
12         * examples/run-examples: changed from mk: to asdf: package loading (KMR), 
13         add conditional loading if UFFI not loaded (John Desoi)
14         * examples/compress.cl: Add dylib to library types for MacOSX (John Desoi),
15         converted compressed output to hexidecimal display (KMR)
16         * examples/union.cl: Rework the tests (KMR)
17         * src-main/libraries.cl: add dylib as default library type on MacOSX (John Desoi)
18         * src-main/aggregates.cl: convert from uffi type in deref-array (John Desoi)
19         
20 2002-09-16 Kevin Rosenberg (kevin@rosenberg.net)
21         - Restructure directories to move to a asdf definition file
22         without pathnames.
23         
24 2002-08-25 Kevin Rosenberg (kevin@rosenberg.net)
25        - Restructure directories to attempt to properly handle both
26         Common Lisp Controller and non-CLC systems
27         
28 2002-08-17 Kevin Rosenberg (kevin@rosenberg.net)
29
30         - add uffi.asd for ASDF users
31
32 2002-08-01 Kevin Rosenberg (kevin@rosenberg.net)
33         - Restructure directories to improve Common Lisp Controller v3
34         compatibility
35         
36 2002-07-25 Kevin Rosenberg (kevin@rosenberg.net)
37
38         - Rework handling of logical pathnames.
39         - Move run-examples.cl to examples directory.
40         
41 2002-06-28 Kevin Rosenberg (kevin@rosenberg.net)
42
43         - Added size-of-foreign-type function.
44         
45 2002-06-26 Kevin Rosenberg (kevin@rosenberg.net)
46
47         - Fix bug in Lispworks allocate-foreign-object
48         - Added new :unsigned-byte type. Made :byte signed. 
49         
50 2002-04-27 Kevin Rosenberg (kevin@rosenberg.net)
51         - misc files
52         First debian version
53         
54 2002-04-23 Kevin Rosenberg (kevin@rosenberg.net)
55         - doc/*
56         Updated to debian docbook catalog
57         
58 2002-04-23 John DeSoi (desoi@mac.com)
59         * src/mcl/*
60         Improved MCL support
61
62 2002-04-06 Kevin Rosenberg (kevin@rosenberg.net)
63         * src/mcl/libraries.cl:
64         Removed unnecessary function and added find-foreign-library
65         * src/mcl/*.cl:
66         Added authorship for John DeSoi
67         * doc/ref.sgml:
68         Added documentation for find-foreign-library
69         * uffi.system:
70         Simplied logical pathnames and MCL loading
71         
72 2002-04-04 John DeSoi (desoi@mac.com)
73         * src/mcl/*.cl
74         Added initial support for MCL
75
76 2002-04-02 Kevin Rosenberg (kevin@rosenberg.net)
77         * src/libraries.cl:
78         Added test for .so libraries on CMUCL and use sys::load-object-file instead
79         of alien:load-library-file
80         * examples/Makefile:
81         Updated defaults so library is created correctly on Linux, FreeBSD, and Solaris
82
83 2002-04-02 Kevin Rosenberg (kevin@rosenberg.net)
84         * examples/compress.cl:
85         Fixed missing '/'
86         * examples/union.cl:
87         Added support for SPARC big-endian
88         * test-examples.cl:
89         Automated testing suite
90         
91 2002-04-01 Kevin Rosenberg (kevin@rosenberg.net)
92         * src/libraries.cl:
93         * examples/Makefile:
94         Changed default type for FreeBSD and updated Makefile for
95         FreeBSD and Solaris. Enhanced find-foreign-library to
96         take a list of types to search.
97         * examples/compress.cl:
98         Add support to use find-foreign-library
99
100 2002-03-31  Kevin Rosenberg (kevin@rosenberg.net)
101         * src/strings.cl:
102         Fixed bug in with-foreign-string (Thanks Harald Hanche-Olsen)
103         * examples/Makefile:
104         Create a .a library file for FreeBSD
105         * src/libraries.cl:
106         Added default type and find-foreign-library functions
107         
108 2002-03-29  Kevin Rosenberg (kevin@rosenberg.net)
109         * src/objects.cl: 
110         Fixed bug in deref-pointer (Thanks John Desoi!)
111
112 2002-03-22  Kevin Rosenberg (kevin@rosenberg.net)
113         * src/aggregates.cl: 
114         Changed name and implementation of def-array to more appropriate
115         def-array-pointer
116         * src/ref.sgml:
117         Updated def-array-pointer documentation
118         * src/primitives.cl:
119         Made results of def-constant equal those of cl:defconstant
120         * src/objects.cl:
121         Made type be evaluated for with-foreign-object and allocate-foreign-object
122         * VERSION:
123         Increase to 0.3.0 to coincide with the release of CLSQL.
124         
125 21 Mar 2002
126         * Fixed problem with NULL foreign-strings with CMUCL
127         * Added c-test-fns to examples for allow more specific testing
128         of UFFI. Builds on UNIX and Win32 platforms.
129         * Added def-union function, added union.cl example
130         * Fixed error with ensure-char-[character|integer]
131         * Added 2-d array example to examples/arrays.cl 
132         * Fixed documentation error on gethostname
133         * Added ensure-char-* and def-union to documentation
134         * Added double-float vector example to c-test-fns
135         * Reworked cstring on Lispworks to have LW handle string conversion
136         * First pass at with-foreign-object -- unoptimized
137         * Added gethostname2 example which uses with-foreign-object
138         * Added char-array-to-pointer function to encapsulate
139         converting a char array to a char pointer
140         * Converted with-foreign-object to use stack allocation on CMUCL and LW
141         * Added benchmark code, first file is for allocation
142         
143 20 Mar 2002
144         * Updated strings.cl so that foreign-strings are always unsigned.
145         Fixes a problem with strtol example.
146         * Added ensure-char-character and ensure-char-integer to handle
147         differences in implementations dereferencing of (* :char).
148         * Added section on design priorities for UFFI
149         * Added section in TODO on splitting implementation-dependent code
150         
151 19 Mar 2002
152         * Added size parameter to allocate-foreign-object. Creates an array
153         of dimensions size.
154         * Got array-2d example working with a 1-d array.
155         * Cleaned strtol example
156         * Added TODO file
157         
158 18 Mar 2002
159         * Documentation fixes (Erik Winkels)
160         * Fixed missing '.' in CMUCL type declarations (Erik Winkels)
161         
162 17 Mar 2002
163         * Changed deref-pointer so it always returns a character when
164         called with a :char or :unsigned-char type
165         * Removed function ensure-char as no longer needed
166         * Added missing :byte specifier to Lispworks
167         * Changed default string type in Lispworks to :unsigned-char
168         which is the native type for Lispworks foreign-strings.
169         * Reworked strtol to handle new character pointing method
170         
171 16 Mar 2002
172         * Fixed return value in load-foreign-library (Thanks Erik Winkels),
173         modified routine to accept pathnames as well as strings.
174         * Fix documention with :pointer-void (Again, Erik Winkels)
175         * Added missing type specifiers for CMUCL (Thanks a bunch, Erik!)
176         
177 15 Mar 2002
178         * Finished basic skeleton of documentation.
179         
180 14 Mar 2002
181         * Changed license to more liberal Lisp Lessor GNU Public License
182         * Fixed problem with uffi.system absent from in distribution 
183         (Thanks John DeSoi)
184         * Fixed compiler warnings
185         
186
187 11 Mar 2002
188         * Changed def-type to def-foreign-type
189         * Created new macro def-type to generate cl:deftype forms. Removed
190         uffi-declare and uffi-slot-type as they are no longer necessary.
191          
192 10 Mar 2002
193         * Modified input parameters to load-foreign-library
194         * Added to documention
195         * Changed parameter order in get-slot-value and deref-array 
196         
197 9 Mar 2002
198         * Added to documentation
199         * Made Allegro CL array access more efficient
200         * Changed def-routine name to def-function
201         * Fixed bug in def-function for Lispworks]
202         * Fixed error in +null-c-string-pointer+ name
203         * Fixed error in (make-null-pointer) for Lispworks
204         * Reworked Lispwork c-strings to be (* :char) rather than the
205         implementation default of (* (:unsigned :char)) to be consistent
206         with CMUCL. Bumped version to 0.2.0 because of change this change.
207         * Renamed c-string to cstring to emphasize it as a basic type
208         * Modified getenv.cl example to avoid name collison with LW
209         * Modified compress.cl to setup output buffer as :unsigned*char
210         * Added test-all-examples function. All routines tested okay with
211         ACL, LW, and CMUCL
212         
213 8 Mar 2002
214         * Added ZIP file output with LF->CRLF translations to distribution
215         * Modified def-enum to use uffi:def-constant rather than
216         cl:defconstant
217