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