summaryrefslogtreecommitdiff
path: root/gmodule
diff options
context:
space:
mode:
authorTim Janik <timj@gtk.org>1998-11-20 13:49:35 +0000
committerTim Janik <timj@src.gnome.org>1998-11-20 13:49:35 +0000
commit6515316f8233a5e3db3f5b4f949e63ecfaf24e02 (patch)
treed2a69004ce5749f2894d20d91900901b18a09aec /gmodule
parent0eb4b182e7b428d3e00b4a84cb67cb8e83d612e6 (diff)
downloadglib-6515316f8233a5e3db3f5b4f949e63ecfaf24e02.tar.gz
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>.
Diffstat (limited to 'gmodule')
-rw-r--r--gmodule/ChangeLog6
-rw-r--r--gmodule/gmodule.c6
2 files changed, 12 insertions, 0 deletions
diff --git a/gmodule/ChangeLog b/gmodule/ChangeLog
index 24d451d8f..4de434321 100644
--- a/gmodule/ChangeLog
+++ b/gmodule/ChangeLog
@@ -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
diff --git a/gmodule/gmodule.c b/gmodule/gmodule.c
index 0bcc37306..9efa3f51b 100644
--- a/gmodule/gmodule.c
+++ b/gmodule/gmodule.c
@@ -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__)