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