mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
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:
parent
0eb4b182e7
commit
6515316f82
2
glib.h
2
glib.h
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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__)
|
||||
|
Loading…
Reference in New Issue
Block a user