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