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