1 Mon Sep 21 01:54:48 1998 Tim Janik <timj@gtk.org>
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);
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.
14 Thu Sep 17 06:34:22 1998 Tim Janik <timj@gtk.org>
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.
22 Tue Sep 15 14:57:30 1998 Owen Taylor <otaylor@redhat.com>
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.
28 Thu Aug 20 07:08:16 1998 Tim Janik <timj@gtk.org>
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.
34 Mon Aug 17 03:41:52 1998 Tim Janik <timj@gtk.org>
37 * gmodule.c (g_module_open): changed the return type for the
38 GModuleCheckInit function to be a string, describing the error
40 (g_module_symbol): show the failing symbol on error messages.
42 Fri Aug 14 02:24:39 1998 Tim Janik <timj@gtk.org>
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
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
51 Mon Aug 10 03:35:57 1998 Tim Janik <timj@gtk.org>
53 * gmodule.c: minor changes to internal interface.
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
59 Mon Aug 10 02:18:31 1998 Tim Janik <timj@gtk.org>
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...
67 Sun Aug 9 15:57:38 1998 Tim Janik <timj@gtk.org>
69 * testgmodule.c: test program for GModule.
71 * libgplugin_b.c: test plugins for testgmodule.c.
74 * gmodule.c: GModule library implementation, which is basically
75 a wrapper about system specifc dynamic loading facilities.
78 Sun Aug 9 10:31:05 1998 Tim Janik <timj@gtk.org>
80 * ChangeLog start for gmodule.