fixed errernerous code wrt to thread specific error string allocation
[platform/upstream/glib.git] / gmodule / ChangeLog
1 Wed Feb 10 07:56:33 1999  Tim Janik  <timj@gtk.org>
2
3         * gmodule.c (g_module_error): fixed errernerous code wrt to thread
4         specific error string allocation handling.
5
6 Thu Jan 21 12:40:11 EST 1999  Jeff Garzik  <jgarzik@pobox.com>
7
8         * gmodule-dl.c (_g_module_build_path):
9         Add braces to eliminate an ambiguous else warning.
10
11 1999-01-16  Tor Lillqvist  <tml@iki.fi>
12
13         * gmodule-dl.c gmodule-dld.c: In
14         _g_module_build_path, don't add the "lib" prefix and
15         ".so" or ".sl" suffix if already there.
16
17         * gmodule-win32.c: Likewise for the ".dll" suffix.
18
19 1998-12-10  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
20
21         * gmodule.c: Made it MT safe, the g_module_error() is now thread
22         specific.
23
24 Fri Nov 20 14:43:44 1998  Tim Janik  <timj@gtk.org>
25
26         * gmodule.c (_g_module_build_path): added empty default imlementation
27         so gmodule.so compiles on systems that are not yet supported, fix from
28         Erik Bagfors <bagfors@hpc2n.umu.se>.
29
30 1998-11-13  Nuno Ferreira  <nmrf@rnl.ist.utl.pt>
31
32         * Makefile.am (INCLUDES): The previous commit message is wrong
33         about the -I$(top_srcdir) being redundant. I put it back.
34
35 Wed Nov 11 23:23:22 EST 1998 Jeff Garzik <jgarzik@pobox.com>
36
37         * Makefile.am : INCLUDES is the right way to add to CFLAGS, not 
38         DEFS.  Also there are bugs with '+=' in makefiles.
39         Got rid of DEFS line by moving G_LOG_DOMAIN setting into INCLUDES.
40         Removed redundant -I from INCLUDES.
41
42 Tue Oct 27 04:00:11 1998  Tim Janik  <timj@gtk.org>
43
44         * testgmodule.c (main): changed the #ifdef WIN32 test to NATIVE_WIN32,
45         this needs to be more constistent throughout the code, do we go for
46         NATIVE_WIN32 or WIN32?
47
48         * gmodule.c (LibMain): special cased the #ifdef __LCC__ case for
49         NATIVE_WIN32, since lcc maybe used on other platforms as well.
50         * libgplugin_a.c (LibMain): 
51         * libgplugin_b.c (LibMain): 
52         likewise. not sure i like this special requirement for lcc in here.
53
54         * gmodule-dl.c (_g_module_build_path): 
55         feature empty "" directories and prepend the module name with "lib".
56
57         * gmodule-dld.c (_g_module_build_path): 
58         * gmodule-win32.c (_g_module_build_path): 
59         feature empty "" directories.
60         
61         * we need some more magic in the _g_module_build_path variants
62         so we don't append/prepend lib and .so, .sl or .dll for those names
63         that already contain it.
64
65         * applied patch from Tor Lillqvist for g_module_build_path() and
66         windows support.
67
68 1998-10-20: Tor Lillqvist <tml@iki.fi>
69         
70         * gmodule/gmodule-win32.c:
71         New file.
72
73         * gmodule/gmodule.c gmodule/gmodule.h:
74         Added the funcion g_module_build_path that builds the path to
75         a module file, decorating the name according to the system's
76         conventions.  Added the Windows implementation.
77
78         * gmodule/libgplugin_a.c gmodule/libgplugin_b.c:
79         Added LibMain for LCC-Win32.
80
81         * gmodule/testgmodule.c:
82         Handle Windows dll names.
83
84 1998-10-25  Raja R Harinath  <harinath@cs.umn.edu>
85
86         * gmodule.h: Remove `#pragma }'.
87         * gmoduleconf.h.in: Likewise.
88
89 Wed Oct 21 19:58:27 1998  Tim Janik  <timj@gtk.org>
90
91         * gmodule.c (g_module_symbol): fixed a string pointer bug that could
92         cause garbage error messages from g_module_symbol() for systems that
93         NEED_USCORE.
94
95 Mon Sep 21 01:54:48 1998  Tim Janik  <timj@gtk.org>
96
97         * gmodule.h: 
98         * gmodule.c: renamed old _de_init functionality to _unload.
99         modules are now expected to export:
100         G_MODULE_EXPORT const gchar* g_module_check_init (GModule *module);
101         and
102         G_MODULE_EXPORT void g_module_unload (GModule *module);
103         returning a string other than NULL from g_module_check_init() will
104         prevent the module from being loaded. a call to g_module_make_resident()
105         from g_module_unload() will prevent the module from being unloaded and
106         still make it resident.
107
108 Thu Sep 17 06:34:22 1998  Tim Janik  <timj@gtk.org>
109
110         * gmodule.h: 
111         * gmodule.c: implemented g_module_make_resident() which can be
112         used to make modules resident.
113         fixed a buglet about the optional "g_module_de_init" function in
114         modules, which could get invoked twice on very obscure occasions.
115
116 Tue Sep 15 14:57:30 1998  Owen Taylor  <otaylor@redhat.com>
117
118         * Makefile.am: Update to libtool-1.2b,
119         change library versioning scheme to drop LT_RELEASE
120         from the -l line, while keeping it in the soname.
121
122 Thu Aug 20 07:08:16 1998  Tim Janik  <timj@gtk.org>
123
124         * gmodule.c: provide no operation implementation for the underlying
125         _g_module_* functions, so we at least compile on systems that have
126         neither of G_MODULE_IMPL_DL or G_MODULE_IMPL_DLD.
127
128 Mon Aug 17 03:41:52 1998  Tim Janik  <timj@gtk.org>
129
130         * gmodule.h:
131         * gmodule.c (g_module_open): changed the return type for the
132         GModuleCheckInit function to be a string, describing the error
133         condition.
134         (g_module_symbol): show the failing symbol on error messages.
135
136 Fri Aug 14 02:24:39 1998  Tim Janik  <timj@gtk.org>
137
138         * Makefile.am: feature the G_LOG_DOMAIN macro to set the log domain
139         to "GModule" upon compilation. we currently have to add this definition
140         to the DEFS variable.
141         * testgmodule.c: we need an ugly #undef G_LOG_DOMAIN at the start
142         of this file currently, since automake doesn't support per target
143         _CFLAGS yet.
144
145 Mon Aug 10 03:35:57 1998  Tim Janik  <timj@gtk.org>
146
147         * gmodule.c: minor changes to internal interface.
148         * gmodule-dl.c: 
149         * gmodule-dld.c: put some comments into the files, and provided
150         better error checking for shl_findsym(). whish i had a system to
151         test this stuff on.
152
153 Mon Aug 10 02:18:31 1998  Tim Janik  <timj@gtk.org>
154
155         * Makefile.am (lib_LTLIBRARIES): for now, skip the dependency on
156         -lglib for libgmodule-1.1.la, libgplugin_a.la and libgplugin_b.la
157         since this clashes with inter-library-dependencies for not installed
158         libraries. glib-config takes care of this for the usuall case, but
159         there needs to be a better way...
160
161 Sun Aug  9 15:57:38 1998  Tim Janik  <timj@gtk.org>
162
163         * testgmodule.c: test program for GModule.
164         * libgplugin_a.c: 
165         * libgplugin_b.c: test plugins for testgmodule.c.
166
167         * gmodule.h: 
168         * gmodule.c: GModule library implementation, which is basically
169         a wrapper about system specifc dynamic loading facilities.
170         
171
172 Sun Aug  9 10:31:05 1998  Tim Janik  <timj@gtk.org>
173
174         * ChangeLog start for gmodule.