summaryrefslogtreecommitdiff
path: root/gmodule
diff options
context:
space:
mode:
authorTim Janik <timj@gtk.org>1999-02-10 11:15:13 +0000
committerTim Janik <timj@src.gnome.org>1999-02-10 11:15:13 +0000
commit0df89d51a4a9c5cdefa0a9f4c754958b054e9256 (patch)
tree187565e9798f8344ad08e6c37391e1566ff9065b /gmodule
parent58a51cbf5fa3c7350799bea1ebf07ca5b2c3594e (diff)
downloadglib-0df89d51a4a9c5cdefa0a9f4c754958b054e9256.tar.gz
be more descriptive on unsupported systems.
Wed Feb 10 12:06:30 1999 Tim Janik <timj@gtk.org> * gmodule.c (CHECK_ERROR): be more descriptive on unsupported systems. Wed Feb 10 12:01:42 1999 Tim Janik <timj@gtk.org> * configure.in: don't reset G_MODULE_IMPL, so it can be overridden from the command line.
Diffstat (limited to 'gmodule')
-rw-r--r--gmodule/ChangeLog4
-rw-r--r--gmodule/gmodule.c3
2 files changed, 6 insertions, 1 deletions
diff --git a/gmodule/ChangeLog b/gmodule/ChangeLog
index 74cf3ae8e..514cca801 100644
--- a/gmodule/ChangeLog
+++ b/gmodule/ChangeLog
@@ -1,3 +1,7 @@
+Wed Feb 10 12:06:30 1999 Tim Janik <timj@gtk.org>
+
+ * gmodule.c (CHECK_ERROR): be more descriptive on unsupported systems.
+
Wed Feb 10 07:56:33 1999 Tim Janik <timj@gtk.org>
* gmodule.c (g_module_error): fixed errernerous code wrt to thread
diff --git a/gmodule/gmodule.c b/gmodule/gmodule.c
index 3cc5ad21f..2a7ea4129 100644
--- a/gmodule/gmodule.c
+++ b/gmodule/gmodule.c
@@ -129,7 +129,8 @@ g_module_set_error (const gchar *error)
#include "gmodule-win32.c"
#else
#undef CHECK_ERROR
-#define CHECK_ERROR(rv) { g_module_set_error ("unsupported"); return rv; }
+#define CHECK_ERROR(rv) { g_module_set_error ("dynamic modules are " \
+ "not supported by this system"); return rv; }
static gpointer
_g_module_open (const gchar *file_name,
gboolean bind_lazy)