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