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