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