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