summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2012-03-13 02:37:31 +0200
committerTor Lillqvist <tml@iki.fi>2012-03-13 02:44:01 +0200
commit9a188e78b24edbca4315fc81fa1d345c14e6a57c (patch)
tree28e9bdd683e6a875fd6975d2050a13a4a9a4ef49 /configure.in
parentUse _NSGetExecutablePath also on iOS (diff)
downloadcore-9a188e78b24edbca4315fc81fa1d345c14e6a57c.tar.gz
core-9a188e78b24edbca4315fc81fa1d345c14e6a57c.zip
Don't usse -D_FILE_OFFSET_BITS=no
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 33109cac11ff..e4ca6a491706 100644
--- a/configure.in
+++ b/configure.in
@@ -4052,10 +4052,10 @@ if test "$_os" != "WINNT" -o "$WITH_MINGW" = "yes"; then
dnl Check for large file support
AC_SYS_LARGEFILE
- if test -n "$ac_cv_sys_file_offset_bits"; then
+ if test -n "$ac_cv_sys_file_offset_bits" -a "$ac_cv_sys_file_offset_bits" != "no"; then
LFS_CFLAGS="-D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits"
fi
- if test -n "$ac_cv_sys_large_files" && test "$ac_cv_sys_large_files" != "no"; then
+ if test -n "$ac_cv_sys_large_files" -a "$ac_cv_sys_large_files" != "no"; then
LFS_CFLAGS="$LFS_CFLAGS -D_LARGE_FILES"
fi
else