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