mirror of
git://git.gnupg.org/gnupg.git
synced 2025-04-17 15:44:34 +02:00
(DLLIBS): Do not include -ldl in the mingw32 case.
This commit is contained in:
parent
441aeb85f2
commit
9e048bc191
@ -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>
|
2003-10-21 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
* configure.ac (PRINTABLE_OS_NAME): Remove special case for The
|
* configure.ac (PRINTABLE_OS_NAME): Remove special case for The
|
||||||
|
@ -634,7 +634,13 @@ if test "$try_extensions" = yes || test x"$card_support" = xyes ; then
|
|||||||
if test x"$found_dlopen" = "xyes" ; then
|
if test x"$found_dlopen" = "xyes" ; then
|
||||||
AC_DEFINE(HAVE_DL_DLOPEN,1,
|
AC_DEFINE(HAVE_DL_DLOPEN,1,
|
||||||
[Defined when the dlopen function family is available])
|
[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
|
if test "$try_extensions" = yes ; then
|
||||||
AC_DEFINE(USE_DYNAMIC_LINKING,1,
|
AC_DEFINE(USE_DYNAMIC_LINKING,1,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user