From: Amos Jeffries Date: Sun, 4 May 2008 11:53:29 +0000 (+1200) Subject: Author: Henrik Nordstrom X-Git-Tag: SQUID_3_0_STABLE6~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79371f8c2ea99ee3c1d8e24d0ada265896384ed8;p=thirdparty%2Fsquid.git Author: Henrik Nordstrom Make --with-large-files try to build 64-bit if possible --with-large-files for some reason tried to make a 32-bit build with large file offsets even if the host supports 64-bit applications, making --with-large-files degrade Squid capabilities on 64-bit OS:es.. --- diff --git a/configure.in b/configure.in index 02461b65e7..a7942c4ef9 100644 --- a/configure.in +++ b/configure.in @@ -1165,7 +1165,7 @@ AC_ARG_WITH(build-environment, ]) if test $needlargefiles && test -z "$buildmodel"; then - for model in POSIX_V6_ILP32_OFFBIG XBS5_ILP32_OFFBIG POSIX_V6_LP64_OFF64 XBS5_LP64_OFF64 POSIX_V6_LPBIG_OFFBIG XBS5_LPBIG_OFFBIG; do + for model in POSIX_V6_LPBIG_OFFBIG XBS5_LPBIG_OFFBIG POSIX_V6_LP64_OFF64 XBS5_LP64_OFF64 POSIX_V6_ILP32_OFFBIG XBS5_ILP32_OFFBIG; do if test "`getconf _$model 2>/dev/null || true`" = 1 || test "`getconf $model 2>/dev/null || true`" ; then buildmodel=$model break