diff options
author | Werner Koch <[email protected]> | 2014-01-23 14:19:35 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2014-01-23 14:19:35 +0000 |
commit | 24ba0ce93263c42afb9f087ffcf2edda0b433022 (patch) | |
tree | 843cf5865826c58fa1c8a5638a7cb690c792efd8 | |
parent | Post release version number bump. (diff) | |
download | gnupg-24ba0ce93263c42afb9f087ffcf2edda0b433022.tar.gz gnupg-24ba0ce93263c42afb9f087ffcf2edda0b433022.zip |
Support building using the latest mingw-w64 toolchain.
* acinclude.m4 (GNUPG_SYS_SYMBOL_UNDERSCORE): Change mingw detection.
--
From: Stephen Kitt <[email protected]>
All MinGW targets require underscores when linking. This patch fixes
acinclude.m4 and the resulting configure so they don't limit the use
of underscores to the old mingw32msvc targets.
Debian-bug-id: 730271
Signed-off-by: Werner Koch <[email protected]>
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 9e4a166f2..44dfd85a9 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -692,7 +692,7 @@ AC_CHECK_TOOL(AS, as, false) AC_DEFUN([GNUPG_SYS_SYMBOL_UNDERSCORE], [tmp_do_check="no" case "${host}" in - *-mingw32msvc*) + *-mingw32*) ac_cv_sys_symbol_underscore=yes ;; i386-emx-os2 | i[3456]86-pc-os2*emx | i386-pc-msdosdjgpp) |