mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-09 19:06:15 +01:00
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.
This commit is contained in:
parent
58a51cbf5f
commit
0df89d51a4
@ -1,3 +1,8 @@
|
||||
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.
|
||||
|
||||
1999-02-10 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* glib.h: s/G_LOCK_DECLARE/G_LOCK_DEFINE/ throuhout glib. Added
|
||||
|
@ -1,3 +1,8 @@
|
||||
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.
|
||||
|
||||
1999-02-10 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* glib.h: s/G_LOCK_DECLARE/G_LOCK_DEFINE/ throuhout glib. Added
|
||||
|
@ -1,3 +1,8 @@
|
||||
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.
|
||||
|
||||
1999-02-10 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* glib.h: s/G_LOCK_DECLARE/G_LOCK_DEFINE/ throuhout glib. Added
|
||||
|
@ -1,3 +1,8 @@
|
||||
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.
|
||||
|
||||
1999-02-10 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* glib.h: s/G_LOCK_DECLARE/G_LOCK_DEFINE/ throuhout glib. Added
|
||||
|
@ -1,3 +1,8 @@
|
||||
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.
|
||||
|
||||
1999-02-10 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* glib.h: s/G_LOCK_DECLARE/G_LOCK_DEFINE/ throuhout glib. Added
|
||||
|
@ -1,3 +1,8 @@
|
||||
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.
|
||||
|
||||
1999-02-10 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* glib.h: s/G_LOCK_DECLARE/G_LOCK_DEFINE/ throuhout glib. Added
|
||||
|
@ -1,3 +1,8 @@
|
||||
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.
|
||||
|
||||
1999-02-10 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* glib.h: s/G_LOCK_DECLARE/G_LOCK_DEFINE/ throuhout glib. Added
|
||||
|
@ -1,3 +1,8 @@
|
||||
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.
|
||||
|
||||
1999-02-10 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* glib.h: s/G_LOCK_DECLARE/G_LOCK_DEFINE/ throuhout glib. Added
|
||||
|
@ -440,7 +440,7 @@ dnl *** g_module checks ***
|
||||
dnl ***********************
|
||||
G_MODULE_LIBS=
|
||||
G_MODULE_LDFLAGS=
|
||||
G_MODULE_IMPL=
|
||||
dnl G_MODULE_IMPL= don't reset, so cmd-line can override
|
||||
G_MODULE_NEED_USCORE=0
|
||||
G_MODULE_HAVE_DLERROR=0
|
||||
dnl *** dlopen() and dlsym() in system libraries
|
||||
|
@ -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
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user