Fix for i686-w64-mingw32.
* configure.ac (NEED__FILE_OFFSET_BITS): Do not define under Windows.
This commit is contained in:
parent
12374cbece
commit
867b950b93
14
configure.ac
14
configure.ac
@ -270,12 +270,14 @@ AC_TYPE_UINTPTR_T
|
|||||||
# A simple compile time check in gpgme.h for GNU/Linux systems that
|
# A simple compile time check in gpgme.h for GNU/Linux systems that
|
||||||
# prevents a file offset bits mismatch between gpgme and the application.
|
# prevents a file offset bits mismatch between gpgme and the application.
|
||||||
NEED__FILE_OFFSET_BITS=0
|
NEED__FILE_OFFSET_BITS=0
|
||||||
case "$ac_cv_sys_file_offset_bits" in
|
if test "$have_w32_system" != yes; then
|
||||||
"" | no | unknown) ;;
|
case "$ac_cv_sys_file_offset_bits" in
|
||||||
*)
|
"" | no | unknown) ;;
|
||||||
NEED__FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits
|
*)
|
||||||
;;
|
NEED__FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits
|
||||||
esac
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
AC_SUBST(NEED__FILE_OFFSET_BITS)
|
AC_SUBST(NEED__FILE_OFFSET_BITS)
|
||||||
|
|
||||||
# Figure out platform dependent typedefs for gpgme.h
|
# Figure out platform dependent typedefs for gpgme.h
|
||||||
|
Loading…
Reference in New Issue
Block a user