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