+Wed Jan 27 01:57:19 1999 Tim Janik <timj@gtk.org>
+
+ * configure.in (G_MODULE_HAVE_DLERROR): applied patch from Andrej
+ Borsenkow <borsenkow.msk@sni.de> to also check for dlsym() in system
+ libraries and -ldl, to catch systems that provide dlopen() in libc
+ and dlsym() in libdl. this is at least the case for Reliant UNIX
+ 5.44 (labeling itself as SINIX).
+
Tue Jan 26 13:39:22 PST 1999 Manish Singh <yosh@gimp.org>
* configure.in: don't use backquotes in warning text
+Wed Jan 27 01:57:19 1999 Tim Janik <timj@gtk.org>
+
+ * configure.in (G_MODULE_HAVE_DLERROR): applied patch from Andrej
+ Borsenkow <borsenkow.msk@sni.de> to also check for dlsym() in system
+ libraries and -ldl, to catch systems that provide dlopen() in libc
+ and dlsym() in libdl. this is at least the case for Reliant UNIX
+ 5.44 (labeling itself as SINIX).
+
Tue Jan 26 13:39:22 PST 1999 Manish Singh <yosh@gimp.org>
* configure.in: don't use backquotes in warning text
+Wed Jan 27 01:57:19 1999 Tim Janik <timj@gtk.org>
+
+ * configure.in (G_MODULE_HAVE_DLERROR): applied patch from Andrej
+ Borsenkow <borsenkow.msk@sni.de> to also check for dlsym() in system
+ libraries and -ldl, to catch systems that provide dlopen() in libc
+ and dlsym() in libdl. this is at least the case for Reliant UNIX
+ 5.44 (labeling itself as SINIX).
+
Tue Jan 26 13:39:22 PST 1999 Manish Singh <yosh@gimp.org>
* configure.in: don't use backquotes in warning text
+Wed Jan 27 01:57:19 1999 Tim Janik <timj@gtk.org>
+
+ * configure.in (G_MODULE_HAVE_DLERROR): applied patch from Andrej
+ Borsenkow <borsenkow.msk@sni.de> to also check for dlsym() in system
+ libraries and -ldl, to catch systems that provide dlopen() in libc
+ and dlsym() in libdl. this is at least the case for Reliant UNIX
+ 5.44 (labeling itself as SINIX).
+
Tue Jan 26 13:39:22 PST 1999 Manish Singh <yosh@gimp.org>
* configure.in: don't use backquotes in warning text
+Wed Jan 27 01:57:19 1999 Tim Janik <timj@gtk.org>
+
+ * configure.in (G_MODULE_HAVE_DLERROR): applied patch from Andrej
+ Borsenkow <borsenkow.msk@sni.de> to also check for dlsym() in system
+ libraries and -ldl, to catch systems that provide dlopen() in libc
+ and dlsym() in libdl. this is at least the case for Reliant UNIX
+ 5.44 (labeling itself as SINIX).
+
Tue Jan 26 13:39:22 PST 1999 Manish Singh <yosh@gimp.org>
* configure.in: don't use backquotes in warning text
+Wed Jan 27 01:57:19 1999 Tim Janik <timj@gtk.org>
+
+ * configure.in (G_MODULE_HAVE_DLERROR): applied patch from Andrej
+ Borsenkow <borsenkow.msk@sni.de> to also check for dlsym() in system
+ libraries and -ldl, to catch systems that provide dlopen() in libc
+ and dlsym() in libdl. this is at least the case for Reliant UNIX
+ 5.44 (labeling itself as SINIX).
+
Tue Jan 26 13:39:22 PST 1999 Manish Singh <yosh@gimp.org>
* configure.in: don't use backquotes in warning text
+Wed Jan 27 01:57:19 1999 Tim Janik <timj@gtk.org>
+
+ * configure.in (G_MODULE_HAVE_DLERROR): applied patch from Andrej
+ Borsenkow <borsenkow.msk@sni.de> to also check for dlsym() in system
+ libraries and -ldl, to catch systems that provide dlopen() in libc
+ and dlsym() in libdl. this is at least the case for Reliant UNIX
+ 5.44 (labeling itself as SINIX).
+
Tue Jan 26 13:39:22 PST 1999 Manish Singh <yosh@gimp.org>
* configure.in: don't use backquotes in warning text
+Wed Jan 27 01:57:19 1999 Tim Janik <timj@gtk.org>
+
+ * configure.in (G_MODULE_HAVE_DLERROR): applied patch from Andrej
+ Borsenkow <borsenkow.msk@sni.de> to also check for dlsym() in system
+ libraries and -ldl, to catch systems that provide dlopen() in libc
+ and dlsym() in libdl. this is at least the case for Reliant UNIX
+ 5.44 (labeling itself as SINIX).
+
Tue Jan 26 13:39:22 PST 1999 Manish Singh <yosh@gimp.org>
* configure.in: don't use backquotes in warning text
G_MODULE_IMPL=
G_MODULE_NEED_USCORE=0
G_MODULE_HAVE_DLERROR=0
-dnl *** dlopen() in system libraries
+dnl *** dlopen() and dlsym() in system libraries
if test -z "$G_MODULE_IMPL"; then
AC_CHECK_FUNC(dlopen,
- G_MODULE_IMPL=G_MODULE_IMPL_DL
+ AC_CHECK_FUNC(dlsym,
+ G_MODULE_IMPL=G_MODULE_IMPL_DL
+ ,)
,)
fi
-dnl *** dlopen() in libdl
+dnl *** dlopen() and dlsym() in libdl
if test -z "$G_MODULE_IMPL"; then
AC_CHECK_LIB(dl, dlopen,
- G_MODULE_LIBS=-ldl
- G_MODULE_IMPL=G_MODULE_IMPL_DL
+ AC_CHECK_LIB(dl, dlsym,
+ G_MODULE_LIBS=-ldl
+ G_MODULE_IMPL=G_MODULE_IMPL_DL
+ ,)
,)
fi
dnl *** shl_load() in libdld (HP-UX)