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