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