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