diff options
author | Werner Koch <[email protected]> | 2003-10-23 07:38:00 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2003-10-23 07:38:00 +0000 |
commit | 9e048bc1914b858ab529cebe1c74990452daf366 (patch) | |
tree | 14aa2b0263f45bc982af8ac997dcf1157964a429 | |
parent | * passphrase.c (ask_passphrase): Add optional promptid arg. (diff) | |
download | gnupg-9e048bc1914b858ab529cebe1c74990452daf366.tar.gz gnupg-9e048bc1914b858ab529cebe1c74990452daf366.zip |
(DLLIBS): Do not include -ldl in the mingw32 case.
Diffstat (limited to '')
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.ac | 8 |
2 files changed, 11 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2003-10-23 Werner Koch <[email protected]> + + * configure.ac (DLLIBS): Do not include -ldl in the mingw32 case. + 2003-10-21 Werner Koch <[email protected]> * configure.ac (PRINTABLE_OS_NAME): Remove special case for The diff --git a/configure.ac b/configure.ac index 7050f4dfc..9b915578f 100644 --- a/configure.ac +++ b/configure.ac @@ -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, |