Kaydet (Commit) 9a188e78 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Don't usse -D_FILE_OFFSET_BITS=no

üst 2b2804b9
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment