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