added empty default imlementation so gmodule.so compiles on systems that

Fri Nov 20 14:43:44 1998  Tim Janik  <timj@gtk.org>

        * gmodule.c (_g_module_build_path): added empty default imlementation
        so gmodule.so compiles on systems that are not yet supported, fix from
        Erik Bagfors <bagfors@hpc2n.umu.se>.
This commit is contained in:
Tim Janik 1998-11-20 13:49:35 +00:00 committed by Tim Janik
parent 0eb4b182e7
commit 6515316f82
4 changed files with 14 additions and 2 deletions

2
glib.h
View File

@ -298,7 +298,7 @@ extern "C" {
# define G_NATIVE_ATEXIT
#endif /* ATEXIT */
/* Hacker macro to place breakpoints for x86 machines.
/* Hacker macro to place breakpoints for elected machines.
* Actual use is strongly deprecated of course ;)
*/
#if defined (__i386__) && defined (__GNUC__) && __GNUC__ >= 2

View File

@ -298,7 +298,7 @@ extern "C" {
# define G_NATIVE_ATEXIT
#endif /* ATEXIT */
/* Hacker macro to place breakpoints for x86 machines.
/* Hacker macro to place breakpoints for elected machines.
* Actual use is strongly deprecated of course ;)
*/
#if defined (__i386__) && defined (__GNUC__) && __GNUC__ >= 2

View File

@ -1,3 +1,9 @@
Fri Nov 20 14:43:44 1998 Tim Janik <timj@gtk.org>
* gmodule.c (_g_module_build_path): added empty default imlementation
so gmodule.so compiles on systems that are not yet supported, fix from
Erik Bagfors <bagfors@hpc2n.umu.se>.
1998-11-13 Nuno Ferreira <nmrf@rnl.ist.utl.pt>
* Makefile.am (INCLUDES): The previous commit message is wrong

View File

@ -137,6 +137,12 @@ _g_module_symbol (gpointer handle,
{
return NULL;
}
static gchar*
_g_module_build_path (const gchar *directory,
const gchar *module_name)
{
return NULL;
}
#endif /* no implementation */
#if defined (NATIVE_WIN32) && defined (__LCC__)