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