mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
Fixed bug 518
This commit is contained in:
parent
7925e747d0
commit
598787a094
@ -1,5 +1,9 @@
|
|||||||
2006-10-02 Werner Koch <wk@g10code.com>
|
2006-10-02 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
|
* acinclude.m4 (GNUPG_SYS_SYMBOL_UNDERSCORE): Add case for mingw32
|
||||||
|
and allow setting the variable on the command line. Fixes bug 518.
|
||||||
|
Also use HOST instead of TARGET.
|
||||||
|
|
||||||
* README: Add information about the forthcoming GnuPG 2.0.
|
* README: Add information about the forthcoming GnuPG 2.0.
|
||||||
|
|
||||||
* configure.ac (AB_INIT): New.
|
* configure.ac (AB_INIT): New.
|
||||||
|
@ -668,13 +668,18 @@ AC_CHECK_TOOL(AS, as, false)
|
|||||||
# with an underscore?
|
# with an underscore?
|
||||||
AC_DEFUN([GNUPG_SYS_SYMBOL_UNDERSCORE],
|
AC_DEFUN([GNUPG_SYS_SYMBOL_UNDERSCORE],
|
||||||
[tmp_do_check="no"
|
[tmp_do_check="no"
|
||||||
case "${target}" in
|
case "${host}" in
|
||||||
|
*-mingw32msvc*)
|
||||||
|
ac_cv_sys_symbol_underscore=yes
|
||||||
|
;;
|
||||||
i386-emx-os2 | i[3456]86-pc-os2*emx | i386-pc-msdosdjgpp)
|
i386-emx-os2 | i[3456]86-pc-os2*emx | i386-pc-msdosdjgpp)
|
||||||
ac_cv_sys_symbol_underscore=yes
|
ac_cv_sys_symbol_underscore=yes
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
if test "$cross_compiling" = yes; then
|
if test "$cross_compiling" = yes; then
|
||||||
|
if test "x$ac_cv_sys_symbol_underscore" = x; then
|
||||||
ac_cv_sys_symbol_underscore=yes
|
ac_cv_sys_symbol_underscore=yes
|
||||||
|
fi
|
||||||
else
|
else
|
||||||
tmp_do_check="yes"
|
tmp_do_check="yes"
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user