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