(DLLIBS): Do not include -ldl in the mingw32 case.

This commit is contained in:
Werner Koch 2003-10-23 07:38:00 +00:00
parent 441aeb85f2
commit 9e048bc191
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2003-10-23 Werner Koch <wk@gnupg.org>
* configure.ac (DLLIBS): Do not include -ldl in the mingw32 case.
2003-10-21 Werner Koch <wk@gnupg.org>
* configure.ac (PRINTABLE_OS_NAME): Remove special case for The

View File

@ -634,7 +634,13 @@ if test "$try_extensions" = yes || test x"$card_support" = xyes ; then
if test x"$found_dlopen" = "xyes" ; then
AC_DEFINE(HAVE_DL_DLOPEN,1,
[Defined when the dlopen function family is available])
AC_SUBST(DLLIBS,"-ldl")
case "${target}" in
*-*-mingw32*)
;;
*)
AC_SUBST(DLLIBS,"-ldl")
;;
esac
if test "$try_extensions" = yes ; then
AC_DEFINE(USE_DYNAMIC_LINKING,1,