------------------------------------------------------------ revno: 8775 revision-id: squid3@treenet.co.nz-20080504115329-jdxiduo9scw1x0fw parent: squid3@treenet.co.nz-20080504110815-buj146k1n0u0x81i committer: Amos Jeffries branch nick: SQUID_3_0 timestamp: Sun 2008-05-04 23:53:29 +1200 message: 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.. ------------------------------------------------------------ # Bazaar merge directive format 2 (Bazaar 0.90) # revision_id: squid3@treenet.co.nz-20080504115329-jdxiduo9scw1x0fw # target_branch: http://www.squid-cache.org/bzr/squid3/branches\ # /SQUID_3_0/ # testament_sha1: 5e538c891765e37d9be05686189e68fe18e11e60 # timestamp: 2008-05-04 12:50:45 +0000 # source_branch: http://www.squid-cache.org/bzr/squid3/branches\ # /SQUID_3_0 # base_revision_id: squid3@treenet.co.nz-20080504110815-\ # buj146k1n0u0x81i # # Begin patch === modified file 'configure.in' --- configure.in 2008-05-03 23:37:00 +0000 +++ configure.in 2008-05-04 11:53:29 +0000 @@ -1165,7 +1165,7 @@ ]) 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