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