added empty default imlementation so gmodule.so compiles on systems that
authorTim Janik <timj@gtk.org>
Fri, 20 Nov 1998 13:49:35 +0000 (13:49 +0000)
committerTim Janik <timj@src.gnome.org>
Fri, 20 Nov 1998 13:49:35 +0000 (13:49 +0000)
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>.

glib.h
glib/glib.h
gmodule/ChangeLog
gmodule/gmodule.c

diff --git a/glib.h b/glib.h
index 73815de..1b66572 100644 (file)
--- a/glib.h
+++ b/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
index 73815de..1b66572 100644 (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
index 24d451d..4de4343 100644 (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
index 0bcc373..9efa3f5 100644 (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__)