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