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