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