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