2009-12-17 Marcus Brinkmann <marcus@g10code.de>

* configure.ac: Make largefile check more robust.
This commit is contained in:
Marcus Brinkmann 2009-12-17 17:36:20 +00:00
parent 1094c0a5d3
commit bc7e0f6339
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2009-12-17 Marcus Brinkmann <marcus@g10code.de>
* configure.ac: Make largefile check more robust.
2009-12-10 Werner Koch <wk@g10code.com>
* configure.ac: Check for getgid and getegid.

View File

@ -207,8 +207,8 @@ AC_TYPE_UINTPTR_T
# A simple compile time check in gpgme.h for GNU/Linux systems that
# prevents a file offset bits mismatch between gpgme and the application.
NEED__FILE_OFFSET_BITS=0
case $ac_cv_sys_file_offset_bits in
no | unknown) ;;
case "$ac_cv_sys_file_offset_bits" in
"" | no | unknown) ;;
*)
NEED__FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits
;;