reverted part of the changes from Sebastian Wilhelmi (1998-10-20). don't
[platform/upstream/glib.git] / gmodule / ChangeLog
1 Wed Oct 21 19:58:27 1998  Tim Janik  <timj@gtk.org>
2
3         * gmodule.c (g_module_symbol): fixed a string pointer bug that could
4         cause garbage error messages from g_module_symbol() for systems that
5         NEED_USCORE.
6
7 Mon Sep 21 01:54:48 1998  Tim Janik  <timj@gtk.org>
8
9         * gmodule.h: 
10         * gmodule.c: renamed old _de_init functionality to _unload.
11         modules are now expected to export:
12         G_MODULE_EXPORT const gchar* g_module_check_init (GModule *module);
13         and
14         G_MODULE_EXPORT void g_module_unload (GModule *module);
15         returning a string other than NULL from g_module_check_init() will
16         prevent the module from being loaded. a call to g_module_make_resident()
17         from g_module_unload() will prevent the module from being unloaded and
18         still make it resident.
19
20 Thu Sep 17 06:34:22 1998  Tim Janik  <timj@gtk.org>
21
22         * gmodule.h: 
23         * gmodule.c: implemented g_module_make_resident() which can be
24         used to make modules resident.
25         fixed a buglet about the optional "g_module_de_init" function in
26         modules, which could get invoked twice on very obscure occasions.
27
28 Tue Sep 15 14:57:30 1998  Owen Taylor  <otaylor@redhat.com>
29
30         * Makefile.am: Update to libtool-1.2b,
31         change library versioning scheme to drop LT_RELEASE
32         from the -l line, while keeping it in the soname.
33
34 Thu Aug 20 07:08:16 1998  Tim Janik  <timj@gtk.org>
35
36         * gmodule.c: provide no operation implementation for the underlying
37         _g_module_* functions, so we at least compile on systems that have
38         neither of G_MODULE_IMPL_DL or G_MODULE_IMPL_DLD.
39
40 Mon Aug 17 03:41:52 1998  Tim Janik  <timj@gtk.org>
41
42         * gmodule.h:
43         * gmodule.c (g_module_open): changed the return type for the
44         GModuleCheckInit function to be a string, describing the error
45         condition.
46         (g_module_symbol): show the failing symbol on error messages.
47
48 Fri Aug 14 02:24:39 1998  Tim Janik  <timj@gtk.org>
49
50         * Makefile.am: feature the G_LOG_DOMAIN macro to set the log domain
51         to "GModule" upon compilation. we currently have to add this definition
52         to the DEFS variable.
53         * testgmodule.c: we need an ugly #undef G_LOG_DOMAIN at the start
54         of this file currently, since automake doesn't support per target
55         _CFLAGS yet.
56
57 Mon Aug 10 03:35:57 1998  Tim Janik  <timj@gtk.org>
58
59         * gmodule.c: minor changes to internal interface.
60         * gmodule-dl.c: 
61         * gmodule-dld.c: put some comments into the files, and provided
62         better error checking for shl_findsym(). whish i had a system to
63         test this stuff on.
64
65 Mon Aug 10 02:18:31 1998  Tim Janik  <timj@gtk.org>
66
67         * Makefile.am (lib_LTLIBRARIES): for now, skip the dependency on
68         -lglib for libgmodule-1.1.la, libgplugin_a.la and libgplugin_b.la
69         since this clashes with inter-library-dependencies for not installed
70         libraries. glib-config takes care of this for the usuall case, but
71         there needs to be a better way...
72
73 Sun Aug  9 15:57:38 1998  Tim Janik  <timj@gtk.org>
74
75         * testgmodule.c: test program for GModule.
76         * libgplugin_a.c: 
77         * libgplugin_b.c: test plugins for testgmodule.c.
78
79         * gmodule.h: 
80         * gmodule.c: GModule library implementation, which is basically
81         a wrapper about system specifc dynamic loading facilities.
82         
83
84 Sun Aug  9 10:31:05 1998  Tim Janik  <timj@gtk.org>
85
86         * ChangeLog start for gmodule.