fa58bd49ba514931e623d2a22e5eb66cd9df0272
[platform/upstream/glib.git] / gmodule / ChangeLog
1 2000-03-04  Tor Lillqvist  <tml@iki.fi>
2
3         * gmodule-win32.c: Call g_win32_error_message() to get the error
4         message strings.
5
6         * libgplugin_a.c
7         * libgplugin_b.c
8         * gmodule.c: Remove LibMain functions that were needed by LCC,
9         which is not a supported compiler.
10
11         * testgmodule.c (main): Test for G_MODULE_IMPL ==
12         G_MODULE_IMPL_WIN32, not G_OS_WIN32.
13
14         * gmoduleconf.h.win32: Remove LCC stuff from here, too. 
15
16 Wed Mar  1 05:34:47 2000  Tim Janik  <timj@gtk.org>
17
18         * gmodule-beos.c (_g_module_symbol): do not return NULL symbols.
19
20         * gmodule-os2.c: removed NetBSD specific defines.
21         (_g_module_self): set an error message for unsupported behaviour.
22
23         * gmodule-beos.c: many coding style fixups.
24         (_g_module_open):
25         (_g_module_self):
26         (_g_module_close):
27         (_g_module_symbol): bunch of memory leaks plugged.
28
29         * gmodule-dl.c: make sure the error message returned from dlerror()
30         is always != NULL, by using a wrapper function fetch_dlerror(). based
31         on a patch to fix _g_module_symbol() for NetBSD from Scott Presnell
32         <srp@zgi.com>.
33
34         * gmodule-dld.c: minor indentation.
35
36         * gmodule-win32.c: minor cleanups.
37
38         * merges from glib-1-2.
39
40 Sat Feb 19 19:43:29 2000  Tim Janik  <timj@gtk.org>
41
42         * testgmodule.c (main): added test to check that not yet bound symbols
43         in shared libraries of the main module are retrievable, from David Gero.
44
45 2000-01-13  Martin Baulig  <martin@home-of-linux.org>
46
47         * gmodule.c (g_module_open): Check whether `check_init' is not NULL
48         before we attempt to call it.
49
50 Sun Oct  3 19:30:52 PDT 1999 Manish Singh <yosh@gimp.org>
51
52         * gmodule.h
53         * testgmodule.c: use G_OS stuff
54
55 Sat Jul 24 20:47:18 1999  Tim Janik  <timj@gtk.org>
56
57         * merged changes from GLib-1-2 branch.
58
59 1999-05-06  Tor Lillqvist  <tml@iki.fi>
60         
61         * gmodule.c: Remove LibMain.
62         
63 Sat May  1 10:58:57 PDT 1999 Manish Singh <yosh@gimp.org>
64
65         * Makefile.am: use -avoid-version and -module for test plugins
66
67 Mon Apr 19 08:43:59 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
68
69         * Makefile.am (EXTRA_DIST): Add gmodule-os2.c
70
71 Wed Apr  7 20:12:58 1999  ape@lrdpf.spacetec.no  (Asbjorn Pettersen)
72
73         * gmodule-os2.c: OS/2 specific file for gmodule.
74         * gmodule.c (_g_module_open): Add gmodule-os2.c if G_MODULE_IMPL_OS2.
75         * gmoduleconf.h.in: Add G_MODULE_IMPL_OS2.
76
77 Fri Apr 23 09:03:48 1999  Tim Janik  <timj@gtk.org>
78
79         * gmodule.c (g_module_symbol): removed inline variable assignment.
80         s/CHECK_ERROR/SUPPORT_OR_RETURN/ to make the code more self descriptive.
81
82 Wed Feb 10 12:06:30 1999  Tim Janik  <timj@gtk.org>
83
84         * gmodule.c (CHECK_ERROR): be more descriptive on unsupported systems.
85
86 Wed Feb 10 07:56:33 1999  Tim Janik  <timj@gtk.org>
87
88         * gmodule.c (g_module_error): fixed errernerous code wrt to thread
89         specific error string allocation handling.
90
91 Thu Jan 21 12:40:11 EST 1999  Jeff Garzik  <jgarzik@pobox.com>
92
93         * gmodule-dl.c (_g_module_build_path):
94         Add braces to eliminate an ambiguous else warning.
95
96 1999-01-16  Tor Lillqvist  <tml@iki.fi>
97
98         * gmodule-dl.c gmodule-dld.c: In
99         _g_module_build_path, don't add the "lib" prefix and
100         ".so" or ".sl" suffix if already there.
101
102         * gmodule-win32.c: Likewise for the ".dll" suffix.
103
104 1998-12-10  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
105
106         * gmodule.c: Made it MT safe, the g_module_error() is now thread
107         specific.
108
109 Fri Nov 20 14:43:44 1998  Tim Janik  <timj@gtk.org>
110
111         * gmodule.c (_g_module_build_path): added empty default imlementation
112         so gmodule.so compiles on systems that are not yet supported, fix from
113         Erik Bagfors <bagfors@hpc2n.umu.se>.
114
115 1998-11-13  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>
116
117         * Makefile.am (INCLUDES): The previous commit message is wrong
118         about the -I$(top_srcdir) being redundant. I put it back.
119
120 Wed Nov 11 23:23:22 EST 1998 Jeff Garzik <jgarzik@pobox.com>
121
122         * Makefile.am : INCLUDES is the right way to add to CFLAGS, not 
123         DEFS.  Also there are bugs with '+=' in makefiles.
124         Got rid of DEFS line by moving G_LOG_DOMAIN setting into INCLUDES.
125         Removed redundant -I from INCLUDES.
126
127 Tue Oct 27 04:00:11 1998  Tim Janik  <timj@gtk.org>
128
129         * testgmodule.c (main): changed the #ifdef WIN32 test to NATIVE_WIN32,
130         this needs to be more constistent throughout the code, do we go for
131         NATIVE_WIN32 or WIN32?
132
133         * gmodule.c (LibMain): special cased the #ifdef __LCC__ case for
134         NATIVE_WIN32, since lcc maybe used on other platforms as well.
135         * libgplugin_a.c (LibMain): 
136         * libgplugin_b.c (LibMain): 
137         likewise. not sure i like this special requirement for lcc in here.
138
139         * gmodule-dl.c (_g_module_build_path): 
140         feature empty "" directories and prepend the module name with "lib".
141
142         * gmodule-dld.c (_g_module_build_path): 
143         * gmodule-win32.c (_g_module_build_path): 
144         feature empty "" directories.
145         
146         * we need some more magic in the _g_module_build_path variants
147         so we don't append/prepend lib and .so, .sl or .dll for those names
148         that already contain it.
149
150         * applied patch from Tor Lillqvist for g_module_build_path() and
151         windows support.
152
153 1998-10-20: Tor Lillqvist <tml@iki.fi>
154         
155         * gmodule/gmodule-win32.c:
156         New file.
157
158         * gmodule/gmodule.c gmodule/gmodule.h:
159         Added the funcion g_module_build_path that builds the path to
160         a module file, decorating the name according to the system's
161         conventions.  Added the Windows implementation.
162
163         * gmodule/libgplugin_a.c gmodule/libgplugin_b.c:
164         Added LibMain for LCC-Win32.
165
166         * gmodule/testgmodule.c:
167         Handle Windows dll names.
168
169 1998-10-25  Raja R Harinath  <harinath@cs.umn.edu>
170
171         * gmodule.h: Remove `#pragma }'.
172         * gmoduleconf.h.in: Likewise.
173
174 Wed Oct 21 19:58:27 1998  Tim Janik  <timj@gtk.org>
175
176         * gmodule.c (g_module_symbol): fixed a string pointer bug that could
177         cause garbage error messages from g_module_symbol() for systems that
178         NEED_USCORE.
179
180 Mon Sep 21 01:54:48 1998  Tim Janik  <timj@gtk.org>
181
182         * gmodule.h: 
183         * gmodule.c: renamed old _de_init functionality to _unload.
184         modules are now expected to export:
185         G_MODULE_EXPORT const gchar* g_module_check_init (GModule *module);
186         and
187         G_MODULE_EXPORT void g_module_unload (GModule *module);
188         returning a string other than NULL from g_module_check_init() will
189         prevent the module from being loaded. a call to g_module_make_resident()
190         from g_module_unload() will prevent the module from being unloaded and
191         still make it resident.
192
193 Thu Sep 17 06:34:22 1998  Tim Janik  <timj@gtk.org>
194
195         * gmodule.h: 
196         * gmodule.c: implemented g_module_make_resident() which can be
197         used to make modules resident.
198         fixed a buglet about the optional "g_module_de_init" function in
199         modules, which could get invoked twice on very obscure occasions.
200
201 Tue Sep 15 14:57:30 1998  Owen Taylor  <otaylor@redhat.com>
202
203         * Makefile.am: Update to libtool-1.2b,
204         change library versioning scheme to drop LT_RELEASE
205         from the -l line, while keeping it in the soname.
206
207 Thu Aug 20 07:08:16 1998  Tim Janik  <timj@gtk.org>
208
209         * gmodule.c: provide no operation implementation for the underlying
210         _g_module_* functions, so we at least compile on systems that have
211         neither of G_MODULE_IMPL_DL or G_MODULE_IMPL_DLD.
212
213 Mon Aug 17 03:41:52 1998  Tim Janik  <timj@gtk.org>
214
215         * gmodule.h:
216         * gmodule.c (g_module_open): changed the return type for the
217         GModuleCheckInit function to be a string, describing the error
218         condition.
219         (g_module_symbol): show the failing symbol on error messages.
220
221 Fri Aug 14 02:24:39 1998  Tim Janik  <timj@gtk.org>
222
223         * Makefile.am: feature the G_LOG_DOMAIN macro to set the log domain
224         to "GModule" upon compilation. we currently have to add this definition
225         to the DEFS variable.
226         * testgmodule.c: we need an ugly #undef G_LOG_DOMAIN at the start
227         of this file currently, since automake doesn't support per target
228         _CFLAGS yet.
229
230 Mon Aug 10 03:35:57 1998  Tim Janik  <timj@gtk.org>
231
232         * gmodule.c: minor changes to internal interface.
233         * gmodule-dl.c: 
234         * gmodule-dld.c: put some comments into the files, and provided
235         better error checking for shl_findsym(). whish i had a system to
236         test this stuff on.
237
238 Mon Aug 10 02:18:31 1998  Tim Janik  <timj@gtk.org>
239
240         * Makefile.am (lib_LTLIBRARIES): for now, skip the dependency on
241         -lglib for libgmodule-1.1.la, libgplugin_a.la and libgplugin_b.la
242         since this clashes with inter-library-dependencies for not installed
243         libraries. glib-config takes care of this for the usuall case, but
244         there needs to be a better way...
245
246 Sun Aug  9 15:57:38 1998  Tim Janik  <timj@gtk.org>
247
248         * testgmodule.c: test program for GModule.
249         * libgplugin_a.c: 
250         * libgplugin_b.c: test plugins for testgmodule.c.
251
252         * gmodule.h: 
253         * gmodule.c: GModule library implementation, which is basically
254         a wrapper about system specifc dynamic loading facilities.
255         
256
257 Sun Aug  9 10:31:05 1998  Tim Janik  <timj@gtk.org>
258
259         * ChangeLog start for gmodule.