]> git.ipfire.org Git - thirdparty/squid.git/blame - configure.in
Honor 0x and 0 prefixes as numeric base indication when parsing squid.conf
[thirdparty/squid.git] / configure.in
CommitLineData
1b3db6d9 1
2877b8a9 2dnl Configuration input file for Squid
090089c4 3dnl
52303a3d 4dnl $Id: configure.in,v 1.497 2008/02/17 09:24:49 serassio Exp $
090089c4 5dnl
090089c4 6dnl
7dnl
39e4ea99 8AC_INIT(Squid Web Proxy, 3.HEAD-BZR, http://www.squid-cache.org/bugs/, squid)
856e69c5 9AC_PREREQ(2.52)
8d9ce05e 10AM_CONFIG_HEADER(include/autoconf.h)
71b12d7c 11AC_CONFIG_AUX_DIR(cfgaux)
8d9ce05e 12AC_CONFIG_SRCDIR([src/main.cc])
25b6a907 13AM_INIT_AUTOMAKE([tar-ustar])
52303a3d 14AC_REVISION($Revision: 1.497 $)dnl
a2794549 15AC_PREFIX_DEFAULT(/usr/local/squid)
246d7ffc 16AM_MAINTAINER_MODE
a2794549 17
63e02610 18PRESET_CFLAGS="$CFLAGS"
19PRESET_LDFLAGS="$LDFLAGS"
20
a2794549 21dnl Set default LDFLAGS
22if test -z "$LDFLAGS"; then
23 LDFLAGS="-g"
24fi
25
a2794549 26dnl Check for GNU cc
27AC_PROG_CC
e6c4cdd6 28AM_PROG_CC_C_O
c4b0db82 29AC_LANG_C
29b8d8d6 30AC_PROG_CXX
88d50a22 31AC_CANONICAL_HOST
645aa936 32AC_DISABLE_SHARED
33AC_PROG_LIBTOOL
f5691f9c 34AC_LTDL_DLLIB
645aa936 35AC_PROG_RANLIB
88d50a22 36
a2794549 37
26675bf4 38CRYPTLIB=''
00fa2c12 39REGEXLIB='' # -lregex
40LIBREGEX='' # libregex.a
090089c4 41
a2794549 42dnl find out the exe extension for this platform. If it's not empty, use it for CGI's as well.
43AC_EXEEXT
44AC_OBJEXT
45
46if test -z "$EXEEXT"; then
47 CGIEXT=".cgi"
48else
7aeb8001 49 # automake automatically adds .exe when installing binaries
50 CGIEXT=""
a2794549 51fi
7aeb8001 52AC_SUBST(CGIEXT)
a2794549 53
0e6d05ef 54dnl this should be expanded to a list of platform sensible support requirements.
55dnl (adding an option like --enable-cygwin-support doesn't make sense :]) - R Collins 2001
df087e68 56case "$host_os" in
4b26fae9 57mingw|mingw32|cygwin|cygwin32)
a2794549 58 AM_CONDITIONAL(ENABLE_WIN32SPECIFIC, true)
df087e68 59 ;;
60*)
a2794549 61 AM_CONDITIONAL(ENABLE_WIN32SPECIFIC, false)
df087e68 62 ;;
63esac
df087e68 64
4b26fae9 65case "$host_os" in
66mingw|mingw32)
67 AC_PATH_PROG(WIN32_PSAPI, psapi.dll, none)
68 CFLAGS="$CFLAGS -mthreads"
69 CXXFLAGS="$CXXFLAGS -mthreads"
70 if test "$ac_cv_path_WIN32_PSAPI" = "none"; then
71 echo "PSAPI.DLL is recommended to run Squid on Windows NT Platform"
72 echo "Please see PSAPI.DLL section on doc/win32-relnotes.html."
73 else
74 AC_DEFINE(HAVE_WIN32_PSAPI,1,[Define if you have PSAPI.DLL on Windows systems])
75 LIBS="$LIBS -lpsapi"
76 fi
790ebe36 77 MINGW_LIBS="-lmingwex"
b5d712b5 78 AM_CONDITIONAL(USE_IPC_WIN32, true)
790ebe36 79 AC_SUBST(MINGW_LIBS)
4b26fae9 80 ;;
b5d712b5 81*)
82 AM_CONDITIONAL(USE_IPC_WIN32, false)
83 ;;
4b26fae9 84esac
85
a26bdc75 86if test -z "$CACHE_HTTP_PORT"; then
87 CACHE_HTTP_PORT="3128"
88fi
89if test -z "$CACHE_ICP_PORT"; then
90 CACHE_ICP_PORT="3130"
91fi
a26bdc75 92
f4aaf39c 93dnl Substitutions
6a9f6389 94AC_DEFINE_UNQUOTED(CACHE_HTTP_PORT, $CACHE_HTTP_PORT,
95[What default TCP port to use for HTTP listening?])
58c1507a 96AC_SUBST(CACHE_HTTP_PORT)
6a9f6389 97AC_DEFINE_UNQUOTED(CACHE_ICP_PORT, $CACHE_ICP_PORT,
98[What default UDP port to use for ICP listening?])
f5e5c4cf 99AC_SUBST(CACHE_ICP_PORT)
090089c4 100
6a9f6389 101AC_DEFINE_UNQUOTED(CONFIG_HOST_TYPE, "$host",[Host type from configure])
30a4f2a8 102
6a9f6389 103AC_DEFINE_UNQUOTED(SQUID_CONFIGURE_OPTIONS, "$ac_configure_args", [configure command line used to configure Squid])
090089c4 104
5483d916 105CACHE_EFFECTIVE_USER="nobody"
106AC_ARG_WITH(default-user,
107 [ --with-default-user=USER System user account for squid permissions.
108 default: nobody],
109 [ CACHE_EFFECTIVE_USER="$withval" ]
110)
111AC_SUBST(CACHE_EFFECTIVE_USER)
112
6ad85e8a 113dnl Gerben Wierda <Gerben_Wierda@RnA.nl>
114case "$host" in
115 mab-next-nextstep3)
116 CC="$CC -arch m68k -arch i486 -arch hppa -arch sparc"
117 ;;
118esac
119
4c43504f 120if test "$GCC" = "yes"; then
121 GCCVER=`$CC -v 2>&1 | awk '$2 == "version" {print $3}'`
122 GCCVER2=`echo $GCCVER | awk '{print $1 * 100}'`
123 case "$host" in
124 i386-*-freebsd*)
125 if test $GCCVER2 -lt 300 ; then
126 echo "ERROR: GCC $GCCVER causes a coredump on $host"
127 echo "ERROR: Try a more recent GCC version"
dd81cb63 128 sleep 5
4c43504f 129 fi
130 ;;
131 esac
132 unset GCCVER
133 unset GCCVER2
134fi
135
30a4f2a8 136dnl Set Default CFLAGS
137if test -z "$PRESET_CFLAGS"; then
138 if test "$GCC" = "yes"; then
139 case "$host" in
97b12a5b 140 *-sun-sunos*)
30a4f2a8 141 # sunos has too many warnings for this to be useful
142 # motorola too
143 ;;
97b12a5b 144 *m88k*)
145 # Motorola cc/ld does not like -02 but is ok on -O
146 CFLAGS=`echo $CFLAGS | sed -e 's/-O[0-9]/-O/'`
147 ;;
30a4f2a8 148 *)
63e02610 149 CFLAGS="-Wall $CFLAGS"
30a4f2a8 150 ;;
151 esac
81a820c6 152 else
153 case "$host" in
c415c128 154 *mips-sgi-irix6.*)
81a820c6 155 # suggested by Rafael Seidl <rafaels@cthulhu.engr.sgi.com>
63e02610 156 CFLAGS="-O3 -OPT:Olimit=0:space=OFF \
776b0191 157 -woff 1009,1014,1110,1116,1183,1185,1188,1204,1230,1233,1355 \
81a820c6 158 -Wl,-woff,85,-woff,84,-woff,134 \
63e02610 159 -nostdinc -I/usr/include -D_BSD_SIGNALS $CFLAGS"
776b0191 160 CXXFLAGS="-O3 -OPT:Olimit=0:space=OFF \
161 -woff 1009,1014,1110,1116,1183,1185,1188,1204,1230,1233,1355 \
162 -Wl,-woff,85,-woff,84,-woff,134 \
163 -nostdinc -I/usr/include -D_BSD_SIGNALS $CXXFLAGS"
81a820c6 164 ;;
e8f5fb18 165 alpha-dec-osf4.*)
553c24ae 166 # Mogul says DEC compilers take both -g and -O2
b6a2f15e 167 CFLAGS=`echo $CFLAGS | sed -e 's/-g/-g3/'`
63e02610 168 CFLAGS="-O2 $CFLAGS"
553c24ae 169 ;;
81a820c6 170 *)
171 ;;
172 esac
30a4f2a8 173 fi
30a4f2a8 174fi
175
d2e3605e 176dnl set squid required flags
177if test "$GCC" = "yes"; then
9f68fb10 178dnl Guido Serassio (serassio@squid-cache.org) 20070811
179dnl Using the latest MinGW (gcc 3.4.5 + mingw-runtime 3.13) cannot build with
180dnl -Wmissing-prototypes -Wmissing-declarations
181dnl TODO: check if the problem will be present in any other newer MinGW release.
182 case "$host_os" in
183 mingw|mingw32)
184 SQUID_CFLAGS="-Werror -Wall -Wpointer-arith -Wwrite-strings -Wcomments"
185 ;;
186 *)
187 SQUID_CFLAGS="-Werror -Wall -Wpointer-arith -Wwrite-strings -Wmissing-prototypes -Wmissing-declarations -Wcomments"
188 ;;
189 esac
190 SQUID_CXXFLAGS="-Werror -Wall -Wpointer-arith -Wwrite-strings -Wcomments"
d2e3605e 191else
9f68fb10 192 SQUID_CFLAGS=
193 SQUID_CXXFLAGS=
d2e3605e 194fi
195AC_SUBST(SQUID_CFLAGS)
196AC_SUBST(SQUID_CXXFLAGS)
197
d7c59e37 198AC_TEST_CHECKFORHUGEOBJECTS
199SQUID_CXXFLAGS="$SQUID_CXXFLAGS $HUGE_OBJECT_FLAG"
200
30a4f2a8 201dnl Set LDFLAGS
202if test -z "$PRESET_LDFLAGS"; then
203 if test "$GCC" = "yes"; then
204 case "$host" in
63e02610 205 *mips-sgi-irix6.*)
206 # Silence Linker warnings 84, 85 and 134
207 LDFLAGS="-Wl,-woff,85 -Wl,-woff,84 -Wl,-woff,134 $LDFLAGS"
208 ;;
30a4f2a8 209 *)
210 # nothing
211 ;;
212 esac
81a820c6 213 else
214 case "$host" in
63e02610 215 *)
216 # nothing
81a820c6 217 ;;
218 esac
30a4f2a8 219 fi
220fi
2060fa9a 221
e5f4e1b0 222AC_ARG_ENABLE(gnuregex,
2c5d82f9 223[ --enable-gnuregex Compile GNUregex. Unless you have reason to use this
2df6213e 224 option, you should not enable it. This library file
225 is usually only required on Windows and very old
226 Unix boxes which do not have their own regex library
227 built in.],
e5f4e1b0 228[USE_GNUREGEX=$enableval])
229
6c0c04db 230SquidInline="yes"
83079644 231
232AC_ARG_ENABLE(optimizations,
233[ --disable-optimizations Don't compile Squid with compiler optimizations enabled.
2df6213e 234 Optimization is good for production builds, but not
235 good for debugging. During development, use
236 --disable-optimizations to reduce compilation times
237 and allow easier debugging. This option implicitly
238 also enabled --disable-inline],
83079644 239[ if test "$enableval" = "no" ; then
240 echo "Disabling compiler optimizations (-O flag)"
241 CFLAGS="`echo $CFLAGS | sed -e 's/-O[[0-9]]*//'`"
242 CXXFLAGS="`echo $CXXFLAGS | sed -e 's/-O[[0-9]]*//'`"
243 SquidInline="no"
244 fi
245])
246
6c0c04db 247AC_ARG_ENABLE(inline,
248[ --disable-inline Don't compile trivial methods as inline. Squid
2df6213e 249 is coded with much of the code able to be inlined.
250 Inlining is good for production builds, but not
251 good for development. During development, use
252 --disable-inline to reduce compilation times and
253 allow incremental builds to be quick. For
254 production builds, or load tests, use
255 --enable-inline to have squid make all trivial
256 methods inlinable by the compiler.],
6c0c04db 257[ if test "$enableval" = "no" ; then
258 SquidInline="no"
259 fi
260])
261
262if test "$SquidInline" = "yes" ; then
263 AC_DEFINE(_SQUID_INLINE_, inline, [Keyword used by squid for inlining methods])
264 AC_DEFINE(_USE_INLINE_,, [Include inline methods into header file])
265else
83079644 266 echo "Inlining optimization disabled"
6c0c04db 267 AC_DEFINE(_SQUID_INLINE_,, [Keyword used by squid for inlining methods])
268fi
269
fa80a8ef 270AC_ARG_ENABLE(debug-cbdata,
271[ --enable-debug-cbdata Provide some debug information in cbdata],
272[ if test "$enableval" = "yes" ; then
273 echo "cbdata debugging enabled"
6a9f6389 274 AC_DEFINE(CBDATA_DEBUG,1,[Enable for cbdata debug information])
fa80a8ef 275 fi
276])
277
0961c811 278dnl This is a developer only option.. developers know how to set defines
279dnl
280dnl AC_ARG_ENABLE(xmalloc-debug,
281dnl [ --enable-xmalloc-debug Do some simple malloc debugging],
282dnl [ if test "$enableval" = "yes" ; then
283dnl echo "Malloc debugging enabled"
6a9f6389 284dnl AC_DEFINE(XMALLOC_DEBUG,1,[Define to do simple malloc debugging])
0961c811 285dnl fi
286dnl ])
287
288dnl This is a developer only option.. developers know how to set defines
289dnl
290dnl AC_ARG_ENABLE(xmalloc-debug-trace,
291dnl [ --enable-xmalloc-debug-trace
292dnl Detailed trace of memory allocations],
293dnl [ if test "$enableval" = "yes" ; then
294dnl echo "Malloc debug trace enabled"
6a9f6389 295dnl AC_DEFINE(XMALLOC_TRACE,1,[Define to have a detailed trace of memory allocations])
296dnl AC_DEFINE(XMALLOC_DEBUG,1)
0961c811 297dnl fi
298dnl ])
e5f4e1b0 299
d9180414 300AC_ARG_ENABLE(xmalloc-statistics,
e5f4e1b0 301[ --enable-xmalloc-statistics
302 Show malloc statistics in status page],
303[ if test "$enableval" = "yes" ; then
304 echo "Malloc statistics enabled"
6a9f6389 305 AC_DEFINE(XMALLOC_STATISTICS,1,[Define to have malloc statistics])
e5f4e1b0 306 fi
307])
308
14b32873 309use_carp=1
323fe0d4 310AC_ARG_ENABLE(carp,
f5e5c4cf 311[ --disable-carp Disable CARP support],
f7c8dc02 312[ if test "$enableval" = "no" ; then
313 echo "CARP disabled"
14b32873 314 use_carp=0
323fe0d4 315 fi
f7c8dc02 316])
14b32873 317if test $use_carp = 1; then
318 AC_DEFINE(USE_CARP, 1, [Cache Array Routing Protocol])
14b32873 319fi
323fe0d4 320
cd748f27 321AC_ARG_ENABLE(async-io,
9bc73deb 322[ --enable-async-io[=N_THREADS]
cd748f27 323 Shorthand for
f85c88f3 324 --with-aufs-threads=N_THREADS
cd748f27 325 --with-pthreads
326 --enable-storeio=ufs,aufs],
327[ case $enableval in
9bc73deb 328 yes)
69144041 329 with_pthreads="yes"
cd748f27 330 STORE_MODULES="ufs aufs"
9bc73deb 331 ;;
332 no)
9bc73deb 333 ;;
334 *)
f85c88f3 335 aufs_io_threads=$enableval
69144041 336 with_pthreads="yes"
cd748f27 337 STORE_MODULES="ufs aufs"
9bc73deb 338 ;;
339 esac
340])
341
f85c88f3 342AC_ARG_WITH(aufs-threads,
343[ --with-aufs-threads=N_THREADS
cd748f27 344 Tune the number of worker threads for the aufs object
345 store.],
a3310b77 346[ case $withval in
347 [[0-9]]*)
348 aufs_io_threads=$withval
349 ;;
350 *)
351 echo "ERROR: Invalid --with-aufs-threads argument"
352 exit 1
353 ;;
354 esac
355])
f85c88f3 356if test "$aufs_io_threads"; then
357 echo "With $aufs_io_threads aufs threads"
6a9f6389 358 AC_DEFINE_UNQUOTED(AUFS_IO_THREADS,$aufs_io_threads,
359 [Defines how many threads aufs uses for I/O])
cd748f27 360fi
361
362AC_ARG_WITH(pthreads,
8154dd82 363[ --with-pthreads Use POSIX Threads])
364if test "$with_pthreads" = "yes"; then
cd748f27 365 echo "With pthreads"
9bc73deb 366fi
e5f4e1b0 367
f85c88f3 368AC_ARG_WITH(aio,
8154dd82 369[ --with-aio Use POSIX AIO])
370if test "$with_aio" = "yes"; then
f85c88f3 371 echo "With aio"
f85c88f3 372fi
8154dd82 373
374AC_ARG_WITH(dl,
375[ --with-dl Use dynamic linking])
376if test "$with_dl" = "yes"; then
377 echo "With dl"
378fi
f85c88f3 379
cd748f27 380AC_ARG_ENABLE(storeio,
381[ --enable-storeio=\"list of modules\"
382 Build support for the list of store I/O modules.
383 The default is only to build the "ufs" module.
384 See src/fs for a list of available modules, or
385 Programmers Guide section <not yet written>
386 for details on how to build your custom store module],
387[ case $enableval in
388 yes)
1c690e30 389 for dir in $srcdir/src/fs/*; do
390 module="`basename $dir`"
391 if test -d "$dir" && test "$module" != CVS; then
392 STORE_MODULES="$STORE_MODULES $module"
8154dd82 393 fi
cd748f27 394 done
395 ;;
396 no)
397 ;;
1c690e30 398 *)
399 STORE_MODULES="`echo $enableval| sed -e 's/,/ /g;s/ */ /g'`"
cd748f27 400 ;;
401 esac
402],
403[ if test -z "$STORE_MODULES"; then
404 STORE_MODULES="ufs"
405 fi
406])
1c690e30 407if test -n "$STORE_MODULES"; then
408 for module in $STORE_MODULES; do
409 if test -d $srcdir/src/fs/$module; then
410 :
411 else
412 echo "ERROR: storeio $module does not exists"
413 exit 1
414 fi
415 done
416 echo "Store modules built: $STORE_MODULES"
59b2d47f 417 STORE_LINKOBJS=
418 for module in $STORE_MODULES; do
419 STORE_LINKOBJS="$STORE_LINKOBJS fs/${module}/StoreFS${module}.o"
420 done
1c690e30 421fi
a2794549 422dnl remove all but diskd - its the only module that needs to recurse
423dnl into the sub directory
d3b3ab85 424UFS_FOUND=
1c690e30 425NEED_UFS=
b9ae18aa 426NEED_BLOCKING=
427NEED_DISKDAEMON=
428NEED_DISKTHREADS=
429NEED_AIO=
082a5e7a 430STORE_TESTS=
a2794549 431for fs in $STORE_MODULES none; do
8154dd82 432 case "$fs" in
433 diskd)
1c690e30 434 NEED_UFS="true"
b9ae18aa 435 NEED_BLOCKING="true"
436 NEED_DISKDAEMON="true"
8154dd82 437 ;;
438 aufs)
1c690e30 439 NEED_UFS="true"
b9ae18aa 440 NEED_BLOCKING="true"
441 NEED_DISKTHREADS="true"
8154dd82 442 ;;
443 coss)
082a5e7a 444 NEED_AIO="true"
3256ae73 445 dnl
446 dnl Automake om MinGW needs explicit exe extension
447 dnl for STORE_TESTS substition
448 dnl
082a5e7a 449 STORE_TESTS="$STORE_TESTS tests/testCoss$EXEEXT"
450 ;;
d3b3ab85 451 ufs)
082a5e7a 452 UFS_FOUND="true"
453 STORE_TESTS="$STORE_TESTS tests/testUfs$EXEEXT"
8154dd82 454 esac
a2794549 455done
b9ae18aa 456STORE_OBJS=
457STORE_LIBS=
458dnl We have 'fake' modules - aufs and diskd - legacy.
459for fs in $STORE_MODULES; do
460 case "$fs" in
461 diskd);;
462 aufs);;
463 *)
464 STORE_OBJS="$STORE_OBJS fs/lib${fs}.a"
465 STORE_LIBS="$STORE_LIBS lib${fs}.a"
466 ;;
467 esac
468done
d3b3ab85 469
1c690e30 470if test -z "$UFS_FOUND" && test -n "$NEED_UFS"; then
3256ae73 471 echo "adding UFS, as it contains core logic for diskd and aufs"
472 STORE_OBJS="$STORE_OBJS fs/libufs.a"
473 STORE_LIBS="$STORE_LIBS libufs.a"
474 STORE_MODULES="$STORE_MODULES ufs"
475 STORE_LINKOBJS="$STORE_LINKOBJS fs/ufs/StoreFSufs.o"
476 dnl
477 dnl Automake om MinGW needs explicit exe extension
478 dnl for STORE_TESTS substition
479 dnl
480 STORE_TESTS="$STORE_TESTS tests/testUfs$EXEEXT"
d3b3ab85 481fi
482
1c690e30 483AC_SUBST(STORE_OBJS)
484AC_SUBST(STORE_LIBS)
59b2d47f 485AC_SUBST(STORE_LINKOBJS)
082a5e7a 486AC_SUBST(STORE_TESTS)
a2794549 487
b9ae18aa 488AC_ARG_ENABLE(disk-io,
489[ --enable-disk-io=\"list of modules\"
490 Build support for the list of disk I/O modules.
491 The default is only to build the "Blocking" module.
492 See src/DiskIO for a list of available modules, or
493 Programmers Guide section <not yet written>
494 for details on how to build your custom disk module],
495[ case $enableval in
496 yes)
497 for dir in $srcdir/src/DiskIO/*; do
498 module="`basename $dir`"
499 if test -d "$dir" && test "$module" != CVS; then
500 DISK_MODULES="$DISK_MODULES $module"
501 fi
502 done
503 ;;
504 no)
505 ;;
506 *)
507 DISK_MODULES="`echo $enableval| sed -e 's/,/ /g;s/ */ /g'`"
508 ;;
509 esac
510],
511[ if test -z "$DISK_MODULES"; then
512 DISK_MODULES="Blocking"
513 fi
514])
515if test -n "$DISK_MODULES"; then
516 for module in $DISK_MODULES; do
517 if test -d $srcdir/src/DiskIO/$module; then
518 :
519 else
520 echo "ERROR: disk-io $module does not exists"
521 exit 1
522 fi
523 done
524 DISK_LIBS="lib`echo $DISK_MODULES|sed -e 's% %.a lib%g'`.a"
525 DISK_LINKOBJS=
526 for module in $DISK_MODULES; do
527 DISK_LINKOBJS="$DISK_LINKOBJS DiskIO/${module}/${module}DiskIOModule.o"
528 done
529fi
530for fs in $DISK_MODULES none; do
531 case "$fs" in
532 DiskDaemon)
533 DISK_PROGRAMS="$DISK_PROGRAMS DiskIO/DiskDaemon/diskd"
534 FOUND_DISKDAEMON="true"
535 ;;
536 DiskThreads)
537 FOUND_DISKTHREADS="true"
538 ;;
539 AIO)
540 FOUND_AIO="true"
541 ;;
542 Blocking)
543 FOUND_BLOCKING="true"
544 esac
545done
546
547if test -z "$FOUND_BLOCKING" && test -n "$NEED_BLOCKING"; then
abb2a3d9 548 echo "adding Blocking, as it is used by an active, legacy Store Module"
549 DISK_LIBS="$DISK_LIBS libBlocking.a"
550 DISK_MODULES="$DISK_MODULES Blocking"
551 DISK_LINKOBJS="$DISK_LINKOBJS DiskIO/Blocking/BlockingDiskIOModule.o"
b9ae18aa 552fi
553
554if test -z "$FOUND_DISKDAEMON" && test -n "$NEED_DISKDAEMON"; then
abb2a3d9 555 echo "adding DiskDaemon, as it is used by an active, legacy Store Module"
556 DISK_LIBS="$DISK_LIBS libDiskDaemon.a"
557 DISK_MODULES="$DISK_MODULES DiskDaemon"
558 DISK_PROGRAMS="$DISK_PROGRAMS DiskIO/DiskDaemon/diskd"
559 DISK_LINKOBJS="$DISK_LINKOBJS DiskIO/DiskDaemon/DiskDaemonDiskIOModule.o"
b9ae18aa 560fi
561
562if test -z "$FOUND_DISKTHREADS" && test -n "$NEED_DISKTHREADS"; then
abb2a3d9 563 echo "adding DiskThreads, as it is used by an active, legacy Store Module"
564 DISK_LIBS="$DISK_LIBS libDiskThreads.a"
565 DISK_MODULES="$DISK_MODULES DiskThreads"
566 DISK_LINKOBJS="$DISK_LINKOBJS DiskIO/DiskThreads/DiskThreadsDiskIOModule.o"
b9ae18aa 567fi
595c7973 568
b9ae18aa 569if test -z "$FOUND_AIO" && test -n "$NEED_AIO"; then
abb2a3d9 570 echo "adding AIO, as it is used by an active, legacy Store Module"
571 DISK_LIBS="$DISK_LIBS libAIO.a"
572 DISK_MODULES="$DISK_MODULES AIO"
573 DISK_LINKOBJS="$DISK_LINKOBJS DiskIO/AIO/AIODiskIOModule.o"
b9ae18aa 574fi
575echo "IO Modules built: $DISK_MODULES"
00dae584 576USE_AIOPS_WIN32=0
577USE_AIO_WIN32=0
b9ae18aa 578dnl we know what is being built. now add dependencies.
579for fs in $DISK_MODULES none; do
580 case "$fs" in
581 DiskThreads)
582 if test -z "$with_pthreads"; then
595c7973 583 case "$host_os" in
61163411 584 mingw|mingw32)
00dae584 585 USE_AIOPS_WIN32=1
595c7973 586 echo "DiskThreads IO Module used, Windows threads support automatically enabled"
587 ;;
588 *)
595c7973 589 echo "DiskThreads IO Module used, pthreads support automatically enabled"
590 with_pthreads=yes
591 ;;
592 esac
b9ae18aa 593 fi
594 ;;
595 AIO)
596 if test -z "$with_aio"; then
abb2a3d9 597 case "$host_os" in
61163411 598 mingw|mingw32)
00dae584 599 USE_AIO_WIN32=1
abb2a3d9 600 echo "Aio IO Module used, Windows overlapped I/O support automatically enabled"
601 ;;
602 *)
abb2a3d9 603 echo "Aio IO Module used, aio support automatically enabled"
604 with_aio=yes
605 ;;
606 esac
b9ae18aa 607 fi
608 ;;
609 esac
610done
611
612AC_SUBST(DISK_LIBS)
613AC_SUBST(DISK_PROGRAMS)
614AC_SUBST(DISK_LINKOBJS)
00dae584 615AM_CONDITIONAL([USE_AIOPS_WIN32], [test "$USE_AIOPS_WIN32" = 1])
616AM_CONDITIONAL([USE_AIO_WIN32], [test "$USE_AIO_WIN32" = 1])
b9ae18aa 617
d9180414 618AC_ARG_ENABLE(removal-policies,
6a566b9c 619[ --enable-removal-policies=\"list of policies\"
620 Build support for the list of removal policies.
621 The default is only to build the "lru" module.
622 See src/repl for a list of available modules, or
623 Programmers Guide section 9.9 for details on how
624 to build your custom policy],
625[ case $enableval in
626 yes)
1c690e30 627 for dir in $srcdir/src/repl/*; do
628 module="`basename $dir`"
629 if test -d "$dir" && test "$module" != CVS; then
630 REPL_POLICIES="$REPL_POLICIES $module"
6a566b9c 631 fi
632 done
633 ;;
634 no)
635 ;;
1c690e30 636 *)
637 REPL_POLICIES="`echo $enableval| sed -e 's/,/ /g;s/ */ /g'`"
6a566b9c 638 ;;
639 esac
640],
641[ if test -z "$REPL_POLICIES"; then
642 REPL_POLICIES="lru"
643 fi
644])
1c690e30 645if test -n "$REPL_POLICIES"; then
646 for module in $REPL_POLICIES; do
647 if test -d $srcdir/src/repl/$module; then
648 :
649 else
650 echo "ERROR: Removal policy $module does not exists"
651 exit 1
652 fi
653 done
654 echo "Removal policies built: $REPL_POLICIES"
655 REPL_OBJS="repl/lib`echo $REPL_POLICIES|sed -e 's% %.a repl/lib%g'`.a"
656 REPL_LIBS="`echo $REPL_OBJS|sed -e 's%repl/%%g'`"
657fi
6a566b9c 658AC_SUBST(REPL_POLICIES)
6a566b9c 659AC_SUBST(REPL_OBJS)
f71946fc 660AC_SUBST(REPL_LIBS)
6a566b9c 661
d1da2d1f 662AM_CONDITIONAL(ENABLE_PINGER, false)
e5f4e1b0 663AC_ARG_ENABLE(icmp,
664[ --enable-icmp Enable ICMP pinging],
665[ if test "$enableval" = "yes" ; then
666 echo "ICMP enabled"
6a9f6389 667 AC_DEFINE(USE_ICMP,1,
cc192b50 668 [ Defined this to use Squid's ICMP features (highly recommended!)
669 When USE_ICMP is defined, Squid will send ICMP pings to origin server sites.])
d1da2d1f 670 AM_CONDITIONAL(ENABLE_PINGER, true)
e5f4e1b0 671 fi
672])
673
a2794549 674AM_CONDITIONAL(USE_DELAY_POOLS, false)
d9180414 675AC_ARG_ENABLE(delay-pools,
76d83c52 676[ --enable-delay-pools Enable delay pools to limit bandwidth usage],
e5f4e1b0 677[ if test "$enableval" = "yes" ; then
95e36d02 678 echo "Delay pools enabled"
6a9f6389 679 AC_DEFINE([DELAY_POOLS],1,[Traffic management via "delay pools".])
680 AM_CONDITIONAL(USE_DELAY_POOLS, true,)
e5f4e1b0 681 fi
682])
683
43ae1d95 684AM_CONDITIONAL(USE_ESI, false)
685AC_ARG_ENABLE(esi,
686 AC_HELP_STRING([--enable-esi],[Enable ESI for accelerators. Requires libexpat. Enabling ESI will cause squid to follow the Edge Acceleration Specification (www.esi.org). This causes squid to IGNORE client Cache-Control headers. DO NOT use this in a squid configured as a web proxy, ONLY use it in a squid configured for webserver acceleration.]),
328c40de 687 use_esi=$enableval, use_esi=no)
688if test "$use_esi" = "yes" ; then
f41735ea 689 AC_DEFINE(USE_SQUID_ESI,1,[Compile the ESI processor and Surrogate header support])
43ae1d95 690 AM_CONDITIONAL(USE_ESI, true)
964b44c3 691 XTRA_LIBS="$XTRA_LIBS -lexpat -lxml2"
a787b56a 692else
f41735ea 693 AC_DEFINE(USE_SQUID_ESI,0,[Compile the ESI processor and Surrogate header support])
43ae1d95 694fi
695
51952383 696AM_CONDITIONAL(USE_ICAP_CLIENT, false)
697AC_ARG_ENABLE(icap-client,
698 AC_HELP_STRING([--enable-icap-client],[Enable the ICAP client.]),
328c40de 699 use_icap_client=$enableval, use_icap_client=no)
700if test "$use_icap_client" = "yes" ; then
51952383 701 AC_DEFINE(ICAP_CLIENT,1,[Enable ICAP client features in Squid])
702 AM_CONDITIONAL(USE_ICAP_CLIENT, true)
c21ad0f5 703 ICAP_LIBS="ICAP/libicap.a"
51952383 704else
705 AC_DEFINE(ICAP_CLIENT,0,[Enable ICAP client features in Squid])
c21ad0f5 706 ICAP_LIBS=""
51952383 707fi
c21ad0f5 708AC_SUBST(ICAP_LIBS)
51952383 709
0961c811 710dnl This is a developer only option. Developers know how to set defines
711dnl
712dnl AC_ARG_ENABLE(mem-gen-trace,
713dnl [ --enable-mem-gen-trace Do trace of memory stuff],
714dnl [ if test "$enableval" = "yes" ; then
715dnl echo "Memory trace (to file) enabled"
6a9f6389 716dnl AC_DEFINE(MEM_GEN_TRACE,1,[Define for log file trace of mem alloc/free])
0961c811 717dnl fi
718dnl ])
36a97e19 719
d9180414 720AC_ARG_ENABLE(useragent-log,
e5f4e1b0 721[ --enable-useragent-log Enable logging of User-Agent header],
722[ if test "$enableval" = "yes" ; then
723 echo "User-Agent logging enabled"
6a9f6389 724 AC_DEFINE(USE_USERAGENT_LOG,1,[If you want to log User-Agent request header values, define this.
725 By default, they are written to useragent.log in the Squid log
726 directory.])
e5f4e1b0 727 fi
728])
729
dfca7e1a 730AC_ARG_ENABLE(referer-log,
0961c811 731[ --enable-referer-log Enable logging of Referer header],
dfca7e1a 732[ if test "$enableval" = "yes" ; then
733 echo "Referer logging enabled"
6a9f6389 734 AC_DEFINE(USE_REFERER_LOG,1,[If you want to log Referer request header values, define this.
735 By default, they are written to referer.log in the Squid log
736 directory.])
dfca7e1a 737 fi
738])
739
0b0cfcf2 740USE_WCCP=1
320e9f36 741AC_ARG_ENABLE(wccp,
0961c811 742[ --disable-wccp Disable Web Cache Coordination Protocol],
eb824054 743[ if test "$enableval" = "no" ; then
744 echo "Web Cache Coordination Protocol disabled"
0b0cfcf2 745 USE_WCCP=0
320e9f36 746 fi
747])
0b0cfcf2 748if test $USE_WCCP = 1; then
749 AC_DEFINE(USE_WCCP, 1, [Define to enable WCCP])
750fi
751
752USE_WCCPv2=1
753AC_ARG_ENABLE(wccpv2,
754[ --disable-wccpv2 Disable Web Cache Coordination V2 Protocol],
755[ if test "$enableval" = "no" ; then
756 echo "Web Cache Coordination V2 Protocol disabled"
757 USE_WCCPv2=0
758 fi
759])
760if test $USE_WCCPv2 = 1; then
761 AC_DEFINE(USE_WCCPv2, 1, [Define to enable WCCP V2])
14b32873 762fi
320e9f36 763
d9180414 764AC_ARG_ENABLE(kill-parent-hack,
9fc0b4b8 765[ --enable-kill-parent-hack
766 Kill parent on shutdown],
e5f4e1b0 767[ if test "$enableval" = "yes" ; then
768 echo "Kill parent on shutdown"
6a9f6389 769 AC_DEFINE(KILL_PARENT_OPT,1,[A dangerous feature which causes Squid to kill its parent process
770 (presumably the RunCache script) upon receipt of SIGTERM or SIGINT.
771 Use with caution.])
e5f4e1b0 772 fi
773])
774
87630341 775USE_SNMP=true
e5f4e1b0 776AC_ARG_ENABLE(snmp,
87630341 777[ --disable-snmp Disable SNMP monitoring support],
778[ if test "$enableval" = "no" ; then
779 echo "SNMP monitoring disabled"
780 USE_SNMP=
781 fi
782])
10faea39 783if test x"$USE_SNMP" = xtrue; then
6a9f6389 784 AC_DEFINE(SQUID_SNMP,1,[Define to enable SNMP monitoring of Squid])
63705952 785 SNMPLIB='../snmplib/libsnmp.a'
e5f4e1b0 786 makesnmplib=snmplib
87630341 787fi
cb50b537 788AM_CONDITIONAL(USE_SNMP, [test x$USE_SNMP = xtrue])
e5f4e1b0 789AC_SUBST(SNMPLIB)
e5f4e1b0 790AC_SUBST(makesnmplib)
791
d9180414 792AC_ARG_ENABLE(cachemgr-hostname,
e5f4e1b0 793[ --enable-cachemgr-hostname[=hostname]
794 Make cachemgr.cgi default to this host],
795[ case $enableval in
796 yes)
6a9f6389 797 AC_DEFINE(CACHEMGR_HOSTNAME,[getfullhostname()],
798 [If you are upset that the cachemgr.cgi form comes up with the hostname field blank, then define this to getfullhostname()])
e5f4e1b0 799 echo "Cachemgr default hostname == host where cachemgr runs"
800 ;;
801 no)
802 : # Nothing to do..
803 ;;
804 *)
805 AC_DEFINE_UNQUOTED(CACHEMGR_HOSTNAME,"${enableval}")
806 echo "Cachemgr default hostname set to ${enableval}"
807 ;;
808 esac
809])
810
b0dd28ba 811AM_CONDITIONAL(ENABLE_ARP_ACL, false)
d9180414 812AC_ARG_ENABLE(arp-acl,
e5f4e1b0 813[ --enable-arp-acl Enable use of ARP ACL lists (ether address)],
814[ if test "$enableval" = "yes" ; then
815 echo "ARP ACL lists enabled (ether address)"
933cc58d 816 case "$host" in
ef614b1c 817 *-linux-*)
818 ;;
9d8d033e 819 *-solaris*)
a931a29b 820 ;;
9a2f1170 821 *-freebsd*)
822 ;;
f71a524f 823 *-openbsd*)
824 ;;
074bf084 825 *-netbsd*)
826 ;;
5700029a 827 *-cygwin*)
828 LIBS="$LIBS -liphlpapi"
829 ;;
830 *-mingw*)
831 LIBS="$LIBS -liphlpapi"
832 ;;
933cc58d 833 *)
ef614b1c 834 echo "WARNING: ARP ACL support probably won't work on $host."
933cc58d 835 sleep 10
836 ;;
837 esac
6a9f6389 838 AC_DEFINE(USE_ARP_ACL,1,[Define this to include code which lets you specify access control elements based on ethernet hardware addresses. This code uses functions found in 4.4 BSD derviations (e.g. FreeBSD, ?).])
b0dd28ba 839 AM_CONDITIONAL(ENABLE_ARP_ACL, true)
e5f4e1b0 840 fi
841])
842
87630341 843USE_HTCP=true
a2794549 844AM_CONDITIONAL(ENABLE_HTCP, false)
74075210 845AC_ARG_ENABLE(htcp,
87630341 846[ --disable-htcp Disable HTCP protocol support],
847[ if test "$enableval" = "no" ; then
848 echo "HTCP support disabled"
b4b8b6da 849 fi
74075210 850])
87630341 851if test x$USE_HTCP = xtrue; then
852 AC_DEFINE(USE_HTCP,1, [Define this to include code for the Hypertext Cache Protocol (HTCP)])
853fi
854AM_CONDITIONAL(ENABLE_HTCP, [test x$USE_HTCP = xtrue])
a2794549 855
3d4022fa 856dnl SSL is not enabled by default.
a2794549 857AM_CONDITIONAL(ENABLE_SSL, false)
74075210 858
3d4022fa 859dnl Default is to use OpenSSL when available
1f7c9178 860AC_ARG_ENABLE(ssl,
861[ --enable-ssl Enable ssl gatewaying support using OpenSSL],
862[ if test "$enableval" != "no"; then
3dff197f 863 echo "SSL gatewaying using OpenSSL enabled"
6a9f6389 864 AC_DEFINE(USE_SSL,1,[Define this to include code for SSL encryption.])
a2794549 865 AM_CONDITIONAL(ENABLE_SSL, true)
4b26fae9 866 case "$host_os" in
867 mingw|mingw32)
868 dnl Native Windows port of OpenSSL needs -lgdi32
ee86c79b 869 SSLLIB='-lssleay32 -leay32 -lgdi32'
4b26fae9 870 ;;
871 *)
872 SSLLIB='-lssl -lcrypto'
873 ;;
874 esac
1f7c9178 875 USE_OPENSSL=1
876 fi
877])
878
3d4022fa 879dnl User may specify OpenSSL is needed from a non-standard location
1f7c9178 880AC_ARG_WITH(openssl,
881[ --with-openssl[=prefix]
882 Compile with the OpenSSL libraries. The path to
883 the OpenSSL development libraries and headers
884 installation can be specified if outside of the
885 system standard directories],
886[
46ce628c 887 case "$with_openssl" in
1f7c9178 888 yes)
889 USE_OPENSSL=1
890 ;;
891 no)
892 USE_OPENSSL=
893 ;;
894 *)
46ce628c 895 SSLLIBDIR="$with_openssl/lib"
bcce53ce 896 CPPFLAGS="-I$with_openssl/include $CPPFLAGS"
1f7c9178 897 USE_OPENSSL=1
898 esac
899])
1f7c9178 900if test -n "$USE_OPENSSL"; then
3dff197f 901 echo "Using OpenSSL MD5 implementation"
6a9f6389 902 AC_DEFINE(USE_OPENSSL,1,[Define this to make use of the OpenSSL libraries for MD5 calculation rather than Squid's own MD5 implementation or if building with SSL encryption (USE_SSL)])
1f7c9178 903 if test -z "$SSLLIB"; then
904 SSLLIB="-lcrypto" # for MD5 routines
905 fi
f11555e0 906 dnl This is a workaround for RedHat 9 brain damage..
907 if test -d /usr/kerberos/include && test -z "$SSLLIBDIR" && test -f /usr/include/openssl/kssl.h; then
908 echo "OpenSSL depends on Kerberos"
909 SSLLIBDIR="/usr/kerberos/lib"
910 CPPFLAGS="$CPPFLAGS -I/usr/kerberos/include"
911 fi
1f7c9178 912fi
913if test -n "$SSLLIBDIR"; then
914 SSLLIB="-L$SSLLIBDIR $SSLLIB"
915fi
1f7c9178 916AC_SUBST(SSLLIB)
917
3d4022fa 918
02749868 919AC_ARG_ENABLE(forw-via-db,
920[ --enable-forw-via-db Enable Forw/Via database],
921[ if test "$enableval" = "yes" ; then
922 echo "FORW-VIA enabled"
6a9f6389 923 AC_DEFINE(FORW_VIA_DB,1,[Enable Forw/Via database])
02749868 924 fi
925])
926
6cfa8966 927AC_ARG_ENABLE(cache-digests,
22df58ea 928[ --enable-cache-digests Use Cache Digests
2b6662ba 929 see http://www.squid-cache.org/FAQ/FAQ-16.html],
484f2ebc 930[ if test "$enableval" = "yes" ; then
6cfa8966 931 echo "USE_CACHE_DIGESTS enabled"
6a9f6389 932 AC_DEFINE(USE_CACHE_DIGESTS,1,[Use Cache Digests for locating objects in neighbor caches. This code is still semi-experimental.])
484f2ebc 933 fi
934])
935
8c3926c5 936dnl Select Default Error language
937AC_ARG_ENABLE(default-err-language,
938[ --enable-default-err-language=lang
0961c811 939 Select default language for Error pages (see
940 errors directory) ],
933cc58d 941[
cf9d704a 942 if test -d $srcdir/errors/$enableval; then
8c3926c5 943 ERR_DEFAULT_LANGUAGE=$enableval
933cc58d 944 else
0961c811 945 echo "ERROR! Unknown language $enableval, see errors/ directory"
933cc58d 946 exit 1
947 fi
8c3926c5 948],[ERR_DEFAULT_LANGUAGE="English"])
949AC_SUBST(ERR_DEFAULT_LANGUAGE)
950
951dnl Select languages to be installed
952AC_ARG_ENABLE(err-languages,
953[ --enable-err-languages=\"lang1 lang2..\"
0961c811 954 Select languages to be installed. (All will be
955 installed by default) ],
8c3926c5 956[
957 for l in $enableval; do
958 if test -d $srcdir/errors/$l; then :; else
959 echo "ERROR! Unknown language $$l, see errors/"
960 exit 1
961 fi
962 done
963 ERR_LANGUAGES=$enableval
964],[
965 ERR_LANGUAGES=
966 for l in $srcdir/errors/*; do
cbbe101f 967 if test -f $l/ERR_ACCESS_DENIED; then
8c3926c5 968 ERR_LANGUAGES="$ERR_LANGUAGES `basename $l`"
969 fi
970 done
971])
972AC_SUBST(ERR_LANGUAGES)
933cc58d 973
cd748f27 974dnl Size of COSS memory buffer
975AC_ARG_WITH(coss-membuf-size,
976[ --with-coss-membuf-size COSS membuf size (default 1048576 bytes) ],
977[ if test "$with_coss_membuf_size"; then
978 echo "Setting COSS membuf size to $with_coss_membuf_size bytes"
6a9f6389 979 AC_DEFINE_UNQUOTED(COSS_MEMBUF_SZ, $with_coss_membuf_size,[Define if you want to set the COSS membuf size])
cd748f27 980 fi
981])
982
1b3db6d9 983dnl check for netio plugin stuff
6564c397 984
9bb83c8b 985dnl Enable poll()
6564c397 986disable_poll=
9bb83c8b 987AC_ARG_ENABLE(poll,
6564c397 988[ --disable-poll Disable poll() support. ],
1b3db6d9 989
990[
c68e9c6b 991 case "$enableval" in
992 yes)
9bb83c8b 993 echo "Forcing poll() to be enabled"
d474c7a6 994 SELECT_TYPE="poll"
c68e9c6b 995 ;;
996 no)
997 echo "Forcing poll() to be disabled"
6564c397 998 disable_poll=true
c68e9c6b 999 ;;
1000 esac
9bb83c8b 1001])
1002
1b3db6d9 1003dnl Enable select()
6564c397 1004disable_select=
1b3db6d9 1005AC_ARG_ENABLE(select,
6564c397 1006[ --disable-select Disable select() support. ],
1b3db6d9 1007
1008[
1009 case "$enableval" in
1010 yes)
1011 echo "Forcing select() to be enabled"
d474c7a6 1012 SELECT_TYPE="select"
1b3db6d9 1013 ;;
1014 no)
1015 echo "Forcing select() to be disabled"
6564c397 1016 disable_select=true
1b3db6d9 1017 ;;
1018 esac
1019])
1020
1021dnl Enable kqueue()
6564c397 1022dnl kqueue support is still experiemntal and unstable. Not enabled by default.
1023disable_kqueue=true
1b3db6d9 1024AC_ARG_ENABLE(kqueue,
6564c397 1025[ --enable-kqueue Enable kqueue() support (experimental).],
1b3db6d9 1026
1027[
1028 case "$enableval" in
1029 yes)
1030 echo "Forcing kqueue() to be enabled"
d474c7a6 1031 SELECT_TYPE="kqueue"
1b3db6d9 1032 ;;
1033 no)
1034 echo "Forcing kqueue() to be disabled"
6564c397 1035 disable_kqueue=true
1b3db6d9 1036 ;;
1037esac
1038])
1039
a46d2c0e 1040dnl Enable epoll()
6564c397 1041disable_epoll=
a46d2c0e 1042AC_ARG_ENABLE(epoll,
328c40de 1043[ --disable-epoll Disable Linux epoll() support.],
a46d2c0e 1044
1045[
1046 case "$enableval" in
1047 yes)
1048 echo "Forcing epoll() to be enabled"
d474c7a6 1049 SELECT_TYPE="epoll"
a46d2c0e 1050 ;;
1051 no)
1052 echo "Forcing epoll() to be disabled"
6564c397 1053 disable_epoll=true
a46d2c0e 1054 ;;
1055esac
1056])
1057
1058
72fd085a 1059dnl Disable HTTP violations
14b32873 1060http_violations=1
72fd085a 1061AC_ARG_ENABLE(http-violations,
1062[ --disable-http-violations
1063 This allows you to remove code which is known to
c68e9c6b 1064 violate the HTTP protocol specification.],
72fd085a 1065[ if test "$enableval" = "no" ; then
1066 echo "Disabling HTTP Violations"
14b32873 1067 http_violations=0
72fd085a 1068 fi
1069])
14b32873 1070if test $http_violations = 1; then
1071 AC_DEFINE(HTTP_VIOLATIONS, 1,[By default (for now anyway) Squid includes options which allows the cache administrator to violate the HTTP protocol specification in terms of cache behaviour. Setting this to '0' will disable such code.])
1072else
1073 AC_DEFINE(HTTP_VIOLATIONS, 0)
1074fi
72fd085a 1075
68075fad 1076dnl Enable IPFW Transparent Proxy
1077AC_ARG_ENABLE(ipfw-transparent,
1078[ --enable-ipfw-transparent
1079 Enable Transparent Proxy support for systems
1080 using FreeBSD IPFW style redirection.],
1081[ if test "$enableval" = "yes" ; then
1082 echo "IPFW Transparent Proxy enabled"
1083 AC_DEFINE(IPFW_TRANSPARENT,1,[Enable support for Transparent Proxy on systems using FreeBSD IPFW address redirection.])
1084 IPFW_TRANSPARENT="yes"
1085 fi
1086])
1087
5cafc1d6 1088dnl Enable IP-Filter Transparent Proxy
1089AC_ARG_ENABLE(ipf-transparent,
1090[ --enable-ipf-transparent
1091 Enable Transparent Proxy support for systems
c68e9c6b 1092 using IP-Filter network address redirection.],
5cafc1d6 1093[ if test "$enableval" = "yes" ; then
1094 echo "IP-Filter Transparent Proxy enabled"
6a9f6389 1095 AC_DEFINE(IPF_TRANSPARENT,1,[Enable support for Transparent Proxy on systems using IP-Filter address redirection. This provides "masquerading" support for non Linux system.])
5cafc1d6 1096 IPF_TRANSPARENT="yes"
1097 fi
1098])
1099
2b0dd4ac 1100dnl Enable PF Transparent Proxy
1101AC_ARG_ENABLE(pf-transparent,
1102[ --enable-pf-transparent
1103 Enable Transparent Proxy support for systems
1104 using PF network address redirection.],
1105[ if test "$enableval" = "yes" ; then
1106 echo "PF Transparent Proxy enabled"
6a9f6389 1107 AC_DEFINE(PF_TRANSPARENT,1,[Enable support for Transparent Proxy on systems using PF address redirection. This provides "masquerading" support for OpenBSD.])
2b0dd4ac 1108 PF_TRANSPARENT="yes"
1109 fi
1110])
1111
d6d62546 1112dnl Enable Linux Netfilter Transparent Proxy
d852fbad 1113AC_ARG_ENABLE(linux-netfilter,
1114[ --enable-linux-netfilter
d6d62546 1115 Enable Transparent Proxy support for Linux (Netfilter) systems.],
d852fbad 1116[ if test "$enableval" = "yes" ; then
d6d62546 1117 echo "Linux (Netfilter) Transparent Proxy enabled"
1118 AC_DEFINE(LINUX_NETFILTER,1,[Enable support for Transparent Proxy on Linux (Netfilter) systems])
d852fbad 1119 LINUX_NETFILTER="yes"
1120 fi
1121])
1122
bb7b5fd0 1123dnl Enable Large file support
2df6213e 1124buildmodel=""
1125needlargefiles=
1126
1127AC_ARG_WITH(large-files,
3a125142 1128[ --with-large-files Enable support for large files (logs etc).],
2df6213e 1129[ if test "$withval" = yes; then
1130 needlargefiles=1
bb7b5fd0 1131 fi
1132])
1133
2df6213e 1134dnl UNIX Build environment
1135AC_ARG_WITH(build-environment,
1136[ --with-build-environment=model
1137 The build environment to use. Normally one of
1138 POSIX_V6_ILP32_OFF32 32 bits
1139 POSIX_V6_ILP32_OFFBIG 32 bits with large file support
1140 POSIX_V6_LP64_OFF64 64 bits
1141 POSIX_V6_LPBIG_OFFBIG large pointers and files
1142 XBS5_ILP32_OFF32 32 bits (legacy)
1143 XBS5_ILP32_OFFBIG 32 bits with large file support (legacy)
1144 XBS5_LP64_OFF64 64 bits (legacy)
1145 XBS5_LPBIG_OFFBIG large pointers and files (legacy)
1146 default The default for your OS],
1147[ case "$withval" in
1148 yes|no)
1149 echo "--with-build-environment expects a build environment string as used by getconf"
1150 exit 1
1151 ;;
1152 *)
1153 buildmodel="$withval"
1154 ;;
1155 esac
1156])
1157
1158if test $needlargefiles && test -z "$buildmodel"; then
1159 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
1160 if test "`getconf _$model 2>/dev/null || true`" = 1 || test "`getconf $model 2>/dev/null || true`" ; then
1161 buildmodel=$model
1162 break
1163 fi
1164 done
1165 if test -z "$buildmodel"; then
1166 echo "WARNING: No suitable build environment found for large files. Trying to use _FILE_OFFSET_BITS=64"
1167 sleep 1
1168 CFLAGS="-D_FILE_OFFSET_BITS=64 $CFLAGS"
cca81db1 1169 CXXFLAGS="-D_FILE_OFFSET_BITS=64 $CXXFLAGS"
2df6213e 1170 fi
1171fi
1172if test -n "$buildmodel" && test "$buildmodel" != "default"; then
1173 echo "Using $buildmodel build environment"
1174 if test "`getconf _$buildmodel 2>/dev/null || true`" = 1 || test "`getconf $buildmodel 2>/dev/null || true`" ; then
1175 : # All fine
1176 else
1177 echo "ERROR: Build environment $buildmodel not known to getconf."
1178 exit 1
1179 fi
1180 CFLAGS="`getconf ${buildmodel}_CFLAGS` $CFLAGS"
cca81db1 1181 CXXFLAGS="`getconf ${buildmodel}_CFLAGS` $CXXFLAGS"
2df6213e 1182 LIBS="`getconf ${buildmodel}_LIBS` $LIBS"
1183 LDFLAGS="`getconf ${buildmodel}_LDFLAGS` $LDFLAGS"
63e02610 1184 case "$host" in
2df6213e 1185dnl
1186dnl On Solaris getconf returns for CFLAGS -Xa and -Usun options, but:
1187dnl -Xa is supported only by Sun cc, so we need to remove it when using gcc
1188dnl The 'sun' define is needed by ipfilter includes, so we must remove -Usun
2df6213e 1189 *-solaris*)
1190 if test "$GCC" = "yes"; then
1191 echo "Removing -Xa for gcc on $host"
1192 CFLAGS="`echo $CFLAGS | sed -e 's/-Xa//'`"
cca81db1 1193 CXXFLAGS="`echo $CXXFLAGS | sed -e 's/-Xa//'`"
2df6213e 1194 fi
2ddacc29 1195 echo "Removing -Usun on $host"
2df6213e 1196 CFLAGS="`echo $CFLAGS | sed -e 's/-Usun//'`"
cca81db1 1197 CXXFLAGS="`echo $CXXFLAGS | sed -e 's/-Usun//'`"
2df6213e 1198 ;;
63e02610 1199dnl
1200dnl On Irix 6.x getconf returns options valid only for the SGI MipsPRO compiler,
1201dnl so we must adjust something to avoid gcc errors.
1202dnl On Irix 6.x 32/64 bit we must replace "-n32" with "-mabi=n32" in CFLAGS and
1203dnl remove "-n32" from LDFLAGS
1204dnl On Irix 6.x 64 bit we must replace "-64" with "-mabi=64" in CFLAGS and remove
1205dnl "-64" from LDFLAGS
1206 *-sgi-irix6.*)
1207 if test "$GCC" = "yes"; then
1208 CFLAGS="`echo $CFLAGS | sed -e 's/-n32/-mabi=n32/'`"
ff37fe61 1209 CXXFLAGS="`echo $CXXFLAGS | sed -e 's/-n32/-mabi=n32/'`"
63e02610 1210 LDFLAGS="`echo $LDFLAGS | sed -e 's/-n32//'`"
1211 CFLAGS="`echo $CFLAGS | sed -e 's/-64/-mabi=64/'`"
ff37fe61 1212 CXXFLAGS="`echo $CXXFLAGS | sed -e 's/-64/-mabi=64/'`"
63e02610 1213 LDFLAGS="`echo $LDFLAGS | sed -e 's/-64//'`"
1214 fi
1215 ;;
2df6213e 1216 *)
1217 ;;
1218 esac
1219fi
1220
fc68f6b1 1221dnl Enable Linux transparent proxy support
1222AC_ARG_ENABLE(linux-tproxy,
1223[ --enable-linux-tproxy
1224 Enable real Transparent Proxy support for Netfilter TPROXY.],
1225[ if test "$enableval" = "yes" ; then
1226 echo "Linux Netfilter/TPROXY enabled"
1227 AC_DEFINE(LINUX_TPROXY, 1, [Enable real Transparent Proxy support for Netfilter TPROXY.])
1228 LINUX_TPROXY="yes"
1229 if test -z "$LINUX_NETFILTER"; then
1230 echo "Linux-Netfilter Transparent Proxy automatically enabled"
1231 LINUX_NETFILTER="yes"
1232 fi
1233 fi
1234])
1235
a2794549 1236AM_CONDITIONAL(MAKE_LEAKFINDER, false)
5d620373 1237dnl Enable Leak Finding Functions
1238AC_ARG_ENABLE(leakfinder,
1239[ --enable-leakfinder
1240 Enable Leak Finding code. Enabling this alone
1241 does nothing; you also have to modify the source
1242 code to use the leak finding functions. Probably
1243 Useful for hackers only.],
1244[ if test "$enableval" = "yes" ; then
1245 echo "Leak-Finding enabled"
6a9f6389 1246 AC_DEFINE(USE_LEAKFINDER,1,[Enable code for assisting in finding memory leaks. Hacker stuff only.])
5d620373 1247 USE_LEAKFINDER="yes"
a2794549 1248 AM_CONDITIONAL(MAKE_LEAKFINDER, true)
5d620373 1249 fi
1250])
5d620373 1251
14b32873 1252use_ident=1
3898f57f 1253AC_ARG_ENABLE(ident-lookups,
1254[ --disable-ident-lookups
1255 This allows you to remove code that performs
1256 Ident (RFC 931) lookups.],
1257[ if test "$enableval" = "no" ; then
1258 echo "Disabling Ident Lookups"
14b32873 1259 use_ident=0
3898f57f 1260 fi
1261])
14b32873 1262if test $use_ident = 1; then
1263 AC_DEFINE(USE_IDENT, 1,[Compile in support for Ident (RFC 931) lookups? Enabled by default.])
8000a965 1264 AM_CONDITIONAL(ENABLE_IDENT, true)
14b32873 1265else
1266 AC_DEFINE(USE_IDENT, 0)
8000a965 1267 AM_CONDITIONAL(ENABLE_IDENT, false)
14b32873 1268fi
3898f57f 1269
a2794549 1270AM_CONDITIONAL(USE_DNSSERVER, false)
3c573763 1271use_dnsserver=
eb824054 1272AC_ARG_ENABLE(internal-dns,
7e3ce7b9 1273[ --disable-internal-dns This prevents Squid from directly sending and
eb824054 1274 receiving DNS messages, and instead enables the
1275 old external 'dnsserver' processes.],
1276[ if test "$enableval" = "no" ; then
1277 echo "Disabling Internal DNS queries"
3c573763 1278 use_dnsserver="yes"
eb824054 1279 fi
1280])
3c573763 1281if test "$use_dnsserver" = "yes"; then
6a9f6389 1282 AC_DEFINE(USE_DNSSERVERS,1,[Use dnsserver processes instead of the internal DNS protocol support])
a2794549 1283 AM_CONDITIONAL(USE_DNSSERVER, true)
3c573763 1284fi
eb824054 1285
9d798391 1286dnl Select Default hosts file location
1287AC_ARG_ENABLE(default-hostsfile,
1288[ --enable-default-hostsfile=path
1289 Select default location for hosts file.
1290 See hosts_file directive in squid.conf for details],
1291[
1292 if test "$enableval" != "none" ; then
1293 if test -f $enableval; then
1294 OPT_DEFAULT_HOSTS=$enableval
1295 else
1296 echo "Warning Unable to find $enableval"
1297 sleep 5
1298 fi
1299 else
1300 OPT_DEFAULT_HOSTS="none"
1301 fi
1302 echo "Default hosts file set to: $enableval"
1303],[OPT_DEFAULT_HOSTS="/etc/hosts"])
1304AC_SUBST(OPT_DEFAULT_HOSTS)
1305
94439e4e 1306dnl Select auth schemes modules to build
1307AC_ARG_ENABLE(auth,
1308[ --enable-auth=\"list of auth scheme modules\"
1309 Build support for the list of authentication schemes.
1310 The default is to build support for the Basic scheme.
1311 See src/auth for a list of available modules, or
1312 Programmers Guide section authentication schemes
1313 for details on how to build your custom auth scheme
1314 module],
1315[ case $enableval in
1316 yes)
1c42c4a1 1317 for dir in $srcdir/src/auth/*; do
1318 module="`basename $dir`"
1c690e30 1319 if test -d "$dir" && test "$module" != CVS; then
1c42c4a1 1320 AUTH_MODULES="$AUTH_MODULES $module"
94439e4e 1321 fi
1322 done
1323 ;;
1324 no)
1325 ;;
1c690e30 1326 *)
1327 AUTH_MODULES="`echo $enableval| sed -e 's/,/ /g;s/ */ /g'`"
1328 ;;
94439e4e 1329 esac
1330],
1331[ if test -z "$AUTH_MODULES"; then
6bf4f823 1332 AUTH_MODULES="ntlm basic digest negotiate"
94439e4e 1333 fi
1334])
1c690e30 1335if test -n "$AUTH_MODULES"; then
1336 for module in $AUTH_MODULES; do
1337 if test -d $srcdir/src/auth/$module; then
1338 :
1339 else
1340 echo "ERROR: Auth scheme $module does not exists"
1341 exit 1
1342 fi
7f18d2bd 1343 eval AUTH_MODULE_${module}=yes
1c690e30 1344 done
1345 echo "Auth scheme modules built: $AUTH_MODULES"
1346 AUTH_OBJS="auth/lib`echo $AUTH_MODULES|sed -e 's% %.a auth/lib%g'`.a"
1347 AUTH_LIBS="`echo $AUTH_OBJS|sed -e 's%auth/%%g'`"
d0571da6 1348else
1349 echo "Auth scheme modules built: None"
1c690e30 1350fi
f5691f9c 1351AUTH_LINKOBJS=
1352for module in $AUTH_MODULES; do
1353 AUTH_LINKOBJS="$AUTH_LINKOBJS auth/${module}/${module}Scheme.o"
1354done
94439e4e 1355AC_SUBST(AUTH_MODULES)
94439e4e 1356AC_SUBST(AUTH_LIBS)
f5691f9c 1357AC_SUBST(AUTH_LINKOBJS)
1358AC_SUBST(AUTH_OBJS)
94439e4e 1359
1360dnl Select basic auth scheme helpers to build
7f18d2bd 1361if test -n "$AUTH_MODULE_basic"; then
1362 BASIC_AUTH_HELPERS="all"
1363fi
94439e4e 1364AC_ARG_ENABLE(basic-auth-helpers,
1365[ --enable-basic-auth-helpers=\"list of helpers\"
1366 This option selects which basic scheme proxy_auth
1367 helpers to build and install as part of the normal
1368 build process. For a list of available
0c510f3c 1369 helpers see the helpers/basic_auth directory.],
94439e4e 1370[ case "$enableval" in
7f18d2bd 1371 yes)
1372 BASIC_AUTH_HELPERS="all"
1c690e30 1373 ;;
94439e4e 1374 no)
7f18d2bd 1375 BASIC_AUTH_HELPERS=""
1c690e30 1376 ;;
94439e4e 1377 *)
7f18d2bd 1378 if test -z "$AUTH_MODULE_basic"; then
1379 echo "WARNING: Basic auth helpers selected without the basic scheme enabled"
1380 sleep 15
1381 fi
1c690e30 1382 BASIC_AUTH_HELPERS="`echo $enableval| sed -e 's/,/ /g;s/ */ /g'`"
1383 ;;
94439e4e 1384 esac
1385])
7f18d2bd 1386if test "$BASIC_AUTH_HELPERS" = "all" ; then
1387 BASIC_AUTH_HELPERS=""
1388 for dir in $srcdir/helpers/basic_auth/*; do
1389 helper="`basename $dir`"
1390 if test -f $dir/config.test && sh $dir/config.test "$@"; then
1391 BASIC_AUTH_HELPERS="$BASIC_AUTH_HELPERS $helper"
1392 fi
1393 done
1394fi
fc83a946 1395if test -n "$BASIC_AUTH_HELPERS"; then
20d8bfe4 1396 for helper in $BASIC_AUTH_HELPERS; do
1c690e30 1397 if test -d $srcdir/helpers/basic_auth/$helper; then
2adff954 1398 case $helper in
1399 SASL)
1400 require_sasl=yes
1401 ;;
1402 esac
20d8bfe4 1403 else
1c690e30 1404 echo "ERROR: Basic auth helper $helper does not exists"
1405 exit 1
20d8bfe4 1406 fi
1407 done
fc83a946 1408 echo "Basic auth helpers built: $BASIC_AUTH_HELPERS"
94439e4e 1409fi
fc83a946 1410AC_SUBST(BASIC_AUTH_HELPERS)
94439e4e 1411
1412dnl Select ntlm auth helpers to build
7f18d2bd 1413if test -n "$AUTH_MODULE_ntlm"; then
1414 NTLM_AUTH_HELPERS="all"
1415fi
94439e4e 1416AC_ARG_ENABLE(ntlm-auth-helpers,
1417[ --enable-ntlm-auth-helpers=\"list of helpers\"
1418 This option selects which proxy_auth ntlm helpers
1419 to build and install as part of the normal build
0c510f3c 1420 process. For a list of available helpers see
1421 the helpers/ntlm_auth directory.],
380f0a87 1422[ case "$enableval" in
1423 yes)
7f18d2bd 1424 NTLM_AUTH_HELPERS="all"
1c690e30 1425 ;;
380f0a87 1426 no)
7f18d2bd 1427 NTLM_AUTH_HELPERS=""
1c690e30 1428 ;;
380f0a87 1429 *)
1c690e30 1430 NTLM_AUTH_HELPERS="`echo $enableval| sed -e 's/,/ /g;s/ */ /g'`"
1431 ;;
380f0a87 1432 esac
1433])
7f18d2bd 1434if test "$NTLM_AUTH_HELPERS" = "all" ; then
1435 NTLM_AUTH_HELPERS=""
1436 for dir in $srcdir/helpers/ntlm_auth/*; do
1437 helper="`basename $dir`"
1438 if test -f $dir/config.test && sh $dir/config.test "$@"; then
1439 NTLM_AUTH_HELPERS="$NTLM_AUTH_HELPERS $helper"
1440 fi
1441 done
1442fi
94439e4e 1443if test -n "$NTLM_AUTH_HELPERS"; then
20d8bfe4 1444 for helper in $NTLM_AUTH_HELPERS; do
1c690e30 1445 if test -d $srcdir/helpers/ntlm_auth/$helper; then
1446 :
20d8bfe4 1447 else
1c690e30 1448 echo "ERROR: NTLM Auth helper $helper does not exists"
1449 exit 1
20d8bfe4 1450 fi
1451 done
94439e4e 1452 echo "NTLM auth helpers built: $NTLM_AUTH_HELPERS"
380f0a87 1453fi
94439e4e 1454AC_SUBST(NTLM_AUTH_HELPERS)
1455
6e785d85 1456dnl Select negotiate auth helpers to build
7f18d2bd 1457if test -n "$AUTH_MODULE_negotiate"; then
1458 NEGOTIATE_AUTH_HELPERS="all"
1459fi
6e785d85 1460AC_ARG_ENABLE(negotiate-auth-helpers,
1461[ --enable-negotiate-auth-helpers=\"list of helpers\"
1462 This option selects which proxy_auth negotiate helpers
1463 to build and install as part of the normal build
1464 process. For a list of available helpers see
1465 the helpers/negotiate_auth directory.],
1466[ case "$enableval" in
1467 yes)
7f18d2bd 1468 NEGOTIATE_AUTH_HELPERS="all"
6e785d85 1469 ;;
1470 no)
7f18d2bd 1471 NEGOTIATE_AUTH_HELPERS=""
6e785d85 1472 ;;
1473 *)
1474 NEGOTIATE_AUTH_HELPERS="`echo $enableval| sed -e 's/,/ /g;s/ */ /g'`"
1475 ;;
1476 esac
1477])
7f18d2bd 1478if test "$NEGOTIATE_AUTH_HELPERS" = "all" ; then
1479 NEGOTIATE_AUTH_HELPERS=""
1480 for dir in $srcdir/helpers/negotiate_auth/*; do
1481 helper="`basename $dir`"
1482 if test -f $dir/config.test && sh $dir/config.test "$@"; then
1483 NEGOTIATE_AUTH_HELPERS="$NEGOTIATE_AUTH_HELPERS $helper"
1484 fi
1485 done
1486fi
6e785d85 1487if test -n "$NEGOTIATE_AUTH_HELPERS"; then
1488 for helper in $NEGOTIATE_AUTH_HELPERS; do
1489 if test -d $srcdir/helpers/negotiate_auth/$helper; then
1490 :
1491 else
1492 echo "ERROR: Negotiate Auth helper $helper does not exists"
1493 exit 1
1494 fi
1495 done
1496 echo "Negotiate auth helpers built: $NEGOTIATE_AUTH_HELPERS"
1497fi
1498AC_SUBST(NEGOTIATE_AUTH_HELPERS)
1499
2d70df72 1500dnl Select digest auth scheme helpers to build
7f18d2bd 1501if test -n "$AUTH_MODULE_digest"; then
1502 DIGEST_AUTH_HELPERS=all
1503fi
2d70df72 1504AC_ARG_ENABLE(digest-auth-helpers,
1505[ --enable-digest-auth-helpers=\"list of helpers\"
1506 This option selects which digest scheme authentication
1507 helpers to build and install as part of the normal build
0c510f3c 1508 process. For a list of available helpers see the
1509 helpers/digest_auth directory.],
2d70df72 1510[ case "$enableval" in
1511 yes)
7f18d2bd 1512 DIGEST_AUTH_HELPERS="all"
1c690e30 1513 ;;
2d70df72 1514 no)
7f18d2bd 1515 DIGEST_AUTH_HELPERS=""
1c690e30 1516 ;;
2d70df72 1517 *)
1c690e30 1518 DIGEST_AUTH_HELPERS="`echo $enableval| sed -e 's/,/ /g;s/ */ /g'`"
1519 ;;
2d70df72 1520 esac
1521])
7f18d2bd 1522if test "$DIGEST_AUTH_HELPERS" = "all" ; then
1523 DIGEST_AUTH_HELPERS=""
1524 for dir in $srcdir/helpers/digest_auth/*; do
1525 helper="`basename $dir`"
1526 if test -f $dir/config.test && sh $dir/config.test "$@"; then
1527 DIGEST_AUTH_HELPERS="$DIGEST_AUTH_HELPERS $helper"
1528 fi
1529 done
1530fi
2d70df72 1531if test -n "$DIGEST_AUTH_HELPERS"; then
1daefc1a 1532 for helper in $DIGEST_AUTH_HELPERS; do
1533 if test -f $srcdir/helpers/digest_auth/$helper/Makefile.in; then
1534 :
1535 else
1536 echo "ERROR: digest auth helper $helper does not exists"
1537 exit 1
1538 fi
1539 done
2d70df72 1540 echo "Digest auth helpers built: $DIGEST_AUTH_HELPERS"
1541fi
1542AC_SUBST(DIGEST_AUTH_HELPERS)
380f0a87 1543
6437ac71 1544dnl Enable "NTLM fail open"
1545AC_ARG_ENABLE(ntlm-fail-open,
1546[ --enable-ntlm-fail-open Enable NTLM fail open, where a helper that fails one of the
0961c811 1547 Authentication steps can allow squid to still authenticate
1548 the user.],
6437ac71 1549[ if test "$enableval" = "yes" ; then
6a9f6389 1550 AC_DEFINE(NTLM_FAIL_OPEN,1,[Define if NTLM is allowed to fail gracefully when a helper has problems. WARNING: This has security implications. DO NOT enable unless you KNOW you need it.])
6437ac71 1551 fi
1552])
1553
c6588c68 1554dnl Select external_acl helpers to build
7f18d2bd 1555EXTERNAL_ACL_HELPERS=all
c6588c68 1556AC_ARG_ENABLE(external-acl-helpers,
1557[ --enable-external-acl-helpers=\"list of helpers\"
1558 This option selects which external_acl helpers to
1559 build and install as part of the normal build
1560 process. For a list of available helpers see the
1561 helpers/external_acl directory.],
1562[ case "$enableval" in
1563 yes)
7f18d2bd 1564 EXTERNAL_ACL_HELPERS=all
1c690e30 1565 ;;
c6588c68 1566 no)
7f18d2bd 1567 EXTERNAL_ACL_HELPERS=""
1c690e30 1568 ;;
c6588c68 1569 *)
1c690e30 1570 EXTERNAL_ACL_HELPERS="`echo $enableval| sed -e 's/,/ /g;s/ */ /g'`"
1571 ;;
c6588c68 1572 esac
1573])
7f18d2bd 1574if test "$EXTERNAL_ACL_HELPERS" = "all" ; then
39ee7289 1575 EXTERNAL_ACL_HELPERS=""
7f18d2bd 1576 for dir in $srcdir/helpers/external_acl/*; do
1577 helper="`basename $dir`"
1578 if test -f $dir/config.test && sh $dir/config.test "$@"; then
1579 EXTERNAL_ACL_HELPERS="$EXTERNAL_ACL_HELPERS $helper"
1580 fi
1581 done
1582fi
c6588c68 1583if test -n "$EXTERNAL_ACL_HELPERS"; then
20d8bfe4 1584 for helper in $EXTERNAL_ACL_HELPERS; do
1585 if test -f $srcdir/helpers/external_acl/$helper/Makefile.in; then
1586 :
1587 else
1daefc1a 1588 echo "ERROR: external acl helper $helper does not exists"
20d8bfe4 1589 exit 1
1590 fi
1591 done
c6588c68 1592 echo "External acl helpers built: $EXTERNAL_ACL_HELPERS"
1593fi
1594AC_SUBST(EXTERNAL_ACL_HELPERS)
1595
3a125142 1596AC_ARG_WITH(valgrind-debug,
1597[ --with-valgrind-debug Include debug instrumentation for use with valgrind],
b4bab919 1598[ case $withval in
1599 yes)
1600 valgrind=1
1601 ;;
1602 no)
1603 valgrind=
1604 ;;
1605 *)
1606 CPPFLAGS="$CPPFLAGS -I${enableval}/include"
1607 valgrind=1
1608 ;;
1609 esac
1610 if test $valgrind; then
1611 AC_DEFINE(WITH_VALGRIND, 1, [Valgrind memory debugger support])
1612 echo "Valgrind debug support enabled"
1613 fi
1614])
1615
d96ceb8e 1616dnl Disable "memPools" code
1617AC_ARG_ENABLE(mempools,
b001e822 1618[ --disable-mempools Disable memPools. Note that this option now simply sets the
2df6213e 1619 default behaviour. Specific classes can override this at runtime, and
1620 only lib/MemPool.c needs to be altered to change the squid-wide
1621 default for all classes.],
d96ceb8e 1622[ if test "$enableval" = "no" ; then
1623 echo "memPools disabled"
6a9f6389 1624 AC_DEFINE(DISABLE_POOLS, 1, [Define if you have problems with memPools and want to disable Pools])
3e0dc9a8 1625 else
1626 AC_DEFINE(DISABLE_POOLS, 0, [Define if you have problems with memPools and want to disable Pools.])
d96ceb8e 1627 fi
3e0dc9a8 1628],
1629[ AC_DEFINE(DISABLE_POOLS, 0, [Define if you have problems with memPools and want to disable Pools.])
d96ceb8e 1630])
1631
0e657244 1632dnl Enable WIN32 Service compile mode
1633AC_ARG_ENABLE(win32-service,
1634[ --enable-win32-service Compile Squid as a WIN32 Service
1635 Works only on Windows NT and Windows 2000 Platforms.],
1636[ if test "$enableval" = "yes" ; then
1637 echo "Enabling WIN32 run service mode"
1638 AC_DEFINE(USE_WIN32_SERVICE,1,[Define Windows NT & Windows 2000 run service mode])
1639 fi
1640])
1641
b1485ff8 1642
2adff954 1643dnl Check for Cyrus SASL
1644if test "$require_sasl" = "yes"; then
1645 AC_CHECK_HEADERS(sasl/sasl.h sasl.h)
1646 if test "$ac_cv_header_sasl_sasl_h" = "yes"; then
1647 echo "using SASL2"
1648 LIBSASL="-lsasl2"
1649 else
1650 if test "$ac_cv_header_sasl_h" = "yes"; then
1651 echo "using SASL"
1652 LIBSASL="-lsasl"
1653 else
1654 echo "ERROR: Neither SASL nor SASL2 found"
1655 exit 1
1656 fi
1657 fi
1658 AC_SUBST(LIBSASL)
1659fi
1660
3c573763 1661dnl Disable "unlinkd" code
fe0810ac 1662AC_ARG_ENABLE(unlinkd,
1663[ --disable-unlinkd Do not use unlinkd],
1664[ if test "$enableval" = "no" ; then
3c573763 1665 use_unlinkd=no
fe0810ac 1666 else
3c573763 1667 use_unlinkd=yes
fe0810ac 1668 fi
1669],[
1670 # Here we should probably use some magic depending on the selected
1671 # storage models
3c573763 1672 use_unlinkd=yes
fe0810ac 1673])
3c573763 1674if test "$use_unlinkd" = "yes"; then
fe0810ac 1675 echo "unlinkd enabled"
6a9f6389 1676 AC_DEFINE(USE_UNLINKD,1,[Define this if unlinkd is required (strongly recommended for ufs storage type)])
a2794549 1677 AM_CONDITIONAL(ENABLE_UNLINKD, true)
fe0810ac 1678else
1679 echo "unlinkd disabled"
a2794549 1680 AM_CONDITIONAL(ENABLE_UNLINKD, false)
fe0810ac 1681fi
fe0810ac 1682
ce3d30fb 1683dnl Enable backtraces on fatal errors
1684AC_ARG_ENABLE(stacktraces,
1685[ --enable-stacktraces Enable automatic call backtrace on fatal errors],
1686[ if test "$enableval" = "yes" ; then
1687 echo "Enabling automatic stack backtraces on fatal errors"
6a9f6389 1688 AC_DEFINE(PRINT_STACK_TRACE, 1,[Print stacktraces on fatal errors])
ce3d30fb 1689 fi
1690])
1691
88bfe092 1692AM_CONDITIONAL(ENABLE_XPROF_STATS, false)
1693dnl Enable USE_XPROF_STATS
1694AC_ARG_ENABLE(cpu-profiling,
1695[ --enable-cpu-profiling
1696 This option allows you to see which internal functions
1697 in Squid are consuming how much CPU. Compiles in probes
1698 that measure time spent in probed functions. Needs
1699 source modifications to add new probes. This is meant
1700 for developers to assist in performance optimisations
1701 of Squid internal functions.
1702 If you are not developer and not interested in the stats
1703 you shouldn't enable this, as overhead added, although
1704 small, is still overhead. See lib/Profiler.c for more.
1705 ],
1706[ if test "$enableval" = "yes" ; then
1707 echo "Enabling cpu-profiling"
6a9f6389 1708 AC_DEFINE(USE_XPROF_STATS, 1,[Define to enable CPU profiling within Squid])
88bfe092 1709 AM_CONDITIONAL(ENABLE_XPROF_STATS, true)
1710 fi
1711])
1712
f66a9ef4 1713dnl Enable X-Accelerator-Vary for Vary support within an accelerator setup
1714AC_ARG_ENABLE(x_accelerator_vary,
0961c811 1715[ --enable-x-accelerator-vary
1716 Enable support for the X-Accelerator-Vary
1717 HTTP header. Can be used to indicate
1718 variance within an accelerator setup.
1719 Typically used together with other code
1720 that adds custom HTTP headers to the requests.],
f66a9ef4 1721[ if test "$enableval" = "yes" ; then
1722 echo "Enabling support for X-Accelerator-Vary"
6a9f6389 1723 AC_DEFINE(X_ACCELERATOR_VARY, 1, [Enable support for the X-Accelerator-Vary HTTP header])
f66a9ef4 1724 fi
1725])
1726
cc192b50 1727dnl Enable IPv6 support
1728AC_MSG_CHECKING([whether to enable IPv6])
1729AC_ARG_ENABLE(ipv6,
1730[ --enable-ipv6 Enable ipv6 support],
1731[ AC_MSG_RESULT(yes)
1732 AC_CACHE_CHECK([if PF_INET6 is available], $enableval,
1733 AC_TRY_RUN(
1734 [ /* PF_INET6 available check */
1735# include <sys/types.h>
1736# include <sys/socket.h>
1737 void main() {
1738 if (socket(PF_INET6, SOCK_STREAM, 0) < 0)
1739 exit(1);
1740 else
1741 exit(0);
1742 }
1743 ],
1744 [ AC_DEFINE(USE_IPV6,1,[Enable support for IPv6 ])
1745 AC_MSG_RESULT(yes)
1746 ],
1747 [ AC_DEFINE(USE_IPV6,0,[0 == Disable support for IPv6])
1748 AC_DEFINE(IPV6_SPECIAL_SPLITSTACK,0,[0 == Disable support for Split-Stack IPv6 Implementations])
1749 AC_DEFINE(IPV6_SPECIAL_LOCALHOST,0,[0 == Keep IPv4 and IPv6 Localhosts seperate.])
1750 AC_DEFINE(IPV6_SPECIAL_V4MAPPING,0,[0 == Leave all v4-mapping to OS Implementation])
1751 AC_MSG_RESULT(no)
1752 ])
1753 )
1754],
1755[ AC_DEFINE(USE_IPV6,0,[Disable support for IPv6])
1756 AC_DEFINE(IPV6_SPECIAL_SPLITSTACK,0,[ 0 == Disable support for Split-Stack IPv6 Implementations])
1757 AC_DEFINE(IPV6_SPECIAL_LOCALHOST,0,[ 0 == Keep IPv4 and IPv6 Localhosts seperate.])
1758 AC_DEFINE(IPV6_SPECIAL_V4MAPPING,0,[ 0 == Leave v4-mapping to OS Implementation])
1759 AC_MSG_RESULT(no)
1760])
1761if test $ac_cv_enable_ipv6 ; then
1762dnl Check for Windows XP option
1763AC_MSG_CHECKING([for IPv6 split-stack requirement])
1764AC_ARG_WITH(ipv6-split-stack,
1765 [ --with-ipv6-split-stack Require IPv6 split-stack support (Requires IPv6 Support)],
1766 [AC_DEFINE(IPV6_SPECIAL_SPLITSTACK, 1, [ 1 == Enable support for IPv6 on split-stack implementations]) AC_MSG_RESULT(yes)],
1767 [AC_DEFINE(IPV6_SPECIAL_SPLITSTACK, 0, [ 0 == Disable support for split-stack IPv6 implementations]) AC_MSG_RESULT(no)]
1768)
1769
1770dnl Check for IPv6 Windows Vista option
1771AC_MSG_CHECKING([for IPv6 v4-mapping requirement])
1772AC_ARG_WITH(ipv4-mapped,
1773 [ --with-ipv4-mapped Hybrid-Stack OS require Squid to do any v4-mapping (Requires IPv6 Support)],
1774 [AC_DEFINE(IPV6_SPECIAL_V4MAPPING, 1, [ 1 == Perform v4-mapping internally]) AC_MSG_RESULT(yes)],
1775 [AC_DEFINE(IPV6_SPECIAL_V4MAPPING, 0, [ 0 == Leave all v4-mapping to the OS]) AC_MSG_RESULT(no)]
1776)
1777
1778dnl Check for IPv6-pure option
1779AC_MSG_CHECKING([for IPv6-Localhost requirement])
1780AC_ARG_WITH(localhost-ipv6,
1781 [ --with-localhost-ipv6 Prefer IPv6 localhost address over IPv4 (Requires IPv6 Support).
1782 Treats 127.0.0.1 and ::1 as identical and converts all inputs of to ::1
1783 This depends on Dual-Stack support in the OS and all applications
1784 squid contacts via localhost being IPv6 enabled.
1785 Default: OFF. Treats these two IP as different, squid.conf must
1786 define both 127.0.0.1 and ::1 for the localhost ACL, etc. ],
1787 [AC_DEFINE(IPV6_SPECIAL_LOCALHOST, 1, [ 1 == Convert IPv4-localhost requests to IPv6.]) AC_MSG_RESULT(yes)],
1788 [AC_DEFINE(IPV6_SPECIAL_LOCALHOST, 0, [ 0 == Keep IPv4 and IPv6 Localhosts seperate.]) AC_MSG_RESULT(no)]
1789)
1790# end IPv6-only options
1791fi
1792
bae9832d 1793dnl Optional CNAME-Recursion by Internal DNS engine
1794AC_MSG_CHECKING([whether DNS CNAME recursion wanted])
1795AC_ARG_WITH(dns-cname,
1796 [ --with-dns-cname Enable CNAME-Recursion in Internal DNS stub.],
1797 [AC_DEFINE(DNS_CNAME, 1, [ 1 == Enable expermental CNAME recursion inside Squid DNS resolver stub]) AC_MSG_RESULT(yes)],
1798 [AC_DEFINE(DNS_CNAME, 0, [ 0 == Disable expermental CNAME recursion inside Squid DNS resolver stub]) AC_MSG_RESULT(no)]
1799)
1800
1801
f49be7d1 1802AC_ARG_WITH(filedescriptors,
f5e5c4cf 1803[ --with-filedescriptors=NUMBER
1804 Force squid to support NUMBER filedescriptors],
f49be7d1 1805[ squid_filedescriptors_num=$withval ])
1806
8b5e106b 1807AC_PATH_PROG(CPPUNITCONFIG, cppunit-config, false)
1808if $CPPUNITCONFIG --help >/dev/null; then
f5691f9c 1809 echo "using system installed cppunit"
8b5e106b 1810 SQUID_CPPUNIT_LIBS="`$CPPUNITCONFIG --libs`"
1811 SQUID_CPPUNIT_LA=''
1812 SQUID_CPPUNIT_INC="`$CPPUNITCONFIG --cflags`"
1813else
63d03edb 1814 echo "cppunit does not apear to be installed. squid does not require this, but code testing with 'make check' will fail."
1815 SQUID_CPPUNIT_LA=''
1816 SQUID_CPPUNIT_LIBS=''
1817 SQUID_CPPUNIT_INC=''
f5691f9c 1818fi
8b5e106b 1819
f5691f9c 1820AC_ARG_WITH(cppunit-basedir,
1821[ --with-cppunit-basedir=/path/to/cppunit-base
1822 Path where the cppunit headers are libraries are found
63d03edb 1823 for unit testing.
f5691f9c 1824 ],
1825[ if test -f $withval/include/cppunit/TestCase.h; then
1826 echo "Using cppunit includes from $withval"
1827 SQUID_CPPUNIT_INC="-I${withval}/include"
1828 else
1829 echo "ERROR: Cannot find cppunit at $withval"
1830 exit 1
1831 fi
1832 if test -f $withval/lib/libcppunit.la; then
1833 echo "Using cppunit lib from $withval"
549b1e60 1834 SQUID_CPPUNIT_LA="${withval}/lib/libcppunit.la"
8b5e106b 1835 SQUID_CPPUNIT_LIBS='$(SQUID_CPPUNIT_LA)'
f5691f9c 1836 else
1837 echo "ERROR: Cannot find cppunit at $withval"
1838 exit 1
1839 fi
f5691f9c 1840])
8b5e106b 1841AC_SUBST(SQUID_CPPUNIT_LIBS)
f5691f9c 1842AC_SUBST(SQUID_CPPUNIT_LA)
1843AC_SUBST(SQUID_CPPUNIT_INC)
f5691f9c 1844
fd9aaa3e 1845# Force some compilers to use ANSI features
1846#
1847case "$host" in
1848 alpha-dec-osf*)
1849 if test "$ac_cv_prog_CC" = "cc" ; then
1850 echo "adding '-std1' to cc args for $host"
1851 CC="cc -std1";
1852 ac_cv_prog_CC="$CC"
1853 fi
1854 ;;
c68e9c6b 1855 *-hp-hpux*)
1856 if test "$ac_cv_prog_CC" = "cc" ; then
1857 echo "adding '-Ae' to cc args for $host"
1858 CC="cc -Ae";
1859 ac_cv_prog_CC="$CC"
1860 fi
1861 ;;
fd9aaa3e 1862esac
1863
090089c4 1864dnl Check for programs
1865AC_PROG_CPP
1866AC_PROG_INSTALL
090089c4 1867AC_PROG_LN_S
81280a96 1868AC_PATH_PROG(SH, sh, /bin/sh)
d9f67e6f 1869AC_PATH_PROG(FALSE, false, /usr/bin/false)
1870AC_PATH_PROG(TRUE, true, /usr/bin/true)
1871AC_PATH_PROG(RM, rm, $FALSE)
1872AC_PATH_PROG(MV, mv, $FALSE)
1873AC_PATH_PROG(MKDIR, mkdir, $FALSE)
090089c4 1874AC_PATH_PROG(LN, ln, cp)
4e9d8e26 1875AC_PATH_PROG(PERL, perl, none)
a2794549 1876dnl automake handles this AC_PATH_PROG(MAKEDEPEND, makedepend, $TRUE)
6ad85e8a 1877AC_PATH_PROG(AR, ar, $FALSE)
1878
4e9d8e26 1879if test "$ac_cv_path_PERL" = "none"; then
1880 echo "Perl is required to compile Squid"
1881 echo "Please install Perl and then re-run configure"
1882 exit 1
1883fi
1884
6ad85e8a 1885case "$host" in
1886 *-hp-hpux*)
1887 echo "Disabling 'ranlib' for HP-UX..."
1888 RANLIB=":"
1889 ;;
1890esac
1891
1892dnl set $(AR)
1893AR_R="$AR r"
1894case "$host" in
1895 *-next-nextstep3)
1896 AR="libtool -o"
1897 ;;
1898esac
1899AC_SUBST(AR_R)
090089c4 1900
1901dnl Check for headers
1902AC_HEADER_DIRENT
1903AC_HEADER_STDC
db40ae20 1904
1905AC_CHECK_HEADERS( \
db40ae20 1906 arpa/inet.h \
30a4f2a8 1907 arpa/nameser.h \
9441aa34 1908 assert.h \
db40ae20 1909 bstring.h \
db40ae20 1910 crypt.h \
30a4f2a8 1911 ctype.h \
1912 errno.h \
ce3d30fb 1913 execinfo.h \
db40ae20 1914 fcntl.h \
42ad37af 1915 fnmatch.h \
9c1d8929 1916 getopt.h \
52303a3d 1917 glob.h \
88738790 1918 gnumalloc.h \
30a4f2a8 1919 grp.h \
5cafc1d6 1920 ip_compat.h \
42b51993 1921 ip_fil_compat.h \
5cafc1d6 1922 ip_fil.h \
1923 ip_nat.h \
dbc5782a 1924 ipl.h \
30a4f2a8 1925 libc.h \
6ad85e8a 1926 limits.h \
30a4f2a8 1927 malloc.h \
e0bddc45 1928 math.h \
db40ae20 1929 memory.h \
b075cbb1 1930 mount.h \
e9e7c285 1931 net/if.h \
2b0dd4ac 1932 net/pfvar.h \
30a4f2a8 1933 netdb.h \
db40ae20 1934 netinet/in.h \
cc192b50 1935 netinet/icmp6.h \
1936 netinet/in_systm.h \
1937 netinet/ip.h \
1938 netinet/ip6.h \
1939 netinet/ip_icmp.h \
42b51993 1940 netinet/ip_fil_compat.h \
1f7c9178 1941 openssl/err.h \
1942 openssl/md5.h \
1943 openssl/ssl.h \
cc192b50 1944 netinet/tcp.h \
a7ad6e4e 1945 openssl/engine.h \
4da086c4 1946 paths.h \
dcfe6390 1947 poll.h \
30a4f2a8 1948 pwd.h \
b5e4d7d4 1949 shadow.h \
30a4f2a8 1950 regex.h \
c68e9c6b 1951 sched.h \
30a4f2a8 1952 signal.h \
1953 stdarg.h \
1954 stddef.h \
1955 stdio.h \
db40ae20 1956 stdlib.h \
1957 string.h \
1958 strings.h \
0a4e8536 1959 sys/bitypes.h \
f9576890 1960 sys/bswap.h \
1961 sys/endian.h \
db40ae20 1962 sys/file.h \
5cafc1d6 1963 sys/ioctl.h \
30a4f2a8 1964 sys/param.h \
62ae0622 1965 sys/prctl.h \
3d4022fa 1966 sys/md5.h \
77e4c0c9 1967 sys/msg.h \
30a4f2a8 1968 sys/resource.h \
db40ae20 1969 sys/select.h\
30a4f2a8 1970 sys/socket.h \
1971 sys/stat.h \
b075cbb1 1972 sys/statvfs.h \
3c641669 1973 syscall.h \
30a4f2a8 1974 sys/syscall.h \
db40ae20 1975 sys/time.h \
1976 sys/types.h \
30a4f2a8 1977 sys/un.h \
b075cbb1 1978 sys/vfs.h \
30a4f2a8 1979 sys/wait.h \
db40ae20 1980 syslog.h \
30a4f2a8 1981 time.h \
1982 unistd.h \
3c641669 1983 utime.h \
30a4f2a8 1984 varargs.h \
77d6bd88 1985 byteswap.h \
1986 glib.h \
60d096f4 1987 stdint.h \
1988 inttypes.h \
3c641669 1989 grp.h \
1990 nss_common.h \
94331f58 1991 nss.h \
1992 db.h \
329ce686 1993 db_185.h \
1994 sys/capability.h
db40ae20 1995)
1996
fc68f6b1 1997AC_CHECK_HEADERS(
1998 linux/netfilter_ipv4.h \
1999 linux/netfilter_ipv4/ip_tproxy.h \
2000,,,
dcd1dc78 2001SQUID_DEFAULT_INCLUDES
2002#if HAVE_LIMITS_H
2003#include <limits.h>
2004#endif
2005)
2006
5a3237b0 2007AC_CHECK_HEADERS(net/if.h \
2008 netinet/if_ether.h\
2009 netinet/ip_compat.h\
2010 netinet/ip_fil.h\
77e4c0c9 2011 netinet/ip_nat.h\
dbc5782a 2012 netinet/ipl.h \
77e4c0c9 2013 sys/mount.h\
2014 resolv.h,,,SQUID_BSDNET_INCLUDES)
5a3237b0 2015
a1559187 2016AC_CHECK_HEADERS([libxml/parser.h], [], [
2017 SAVED_CPPFLAGS="$CPPFLAGS"
2018 CPPFLAGS="-I/usr/include/libxml2 $CPPFLAGS"
2019 unset ac_cv_header_libxml_parser_h
2020 AC_CHECK_HEADERS([libxml/parser.h], [], [
2021 CPPFLAGS="$SAVED_CPPFLAGS"
2022 ])
2023 ])
2024
aee0606f 2025AC_C_CONST
d57288d2 2026AC_C_BIGENDIAN
aee0606f 2027
6a9f6389 2028AC_STRUCT_TM
2029AC_CHECK_MEMBERS([struct tm.tm_gmtoff],,,[
2030#if TM_IN_SYS_TIME
2031#if HAVE_SYS_TIME_H
2032#include <sys/time.h>
2033#endif
2034#elif HAVE_TIME_H
2035#include <time.h>
2036#endif
5c51415d 2037])
46c883ed 2038
6a9f6389 2039AC_CHECK_TYPE(struct mallinfo,AC_DEFINE(HAVE_STRUCT_MALLINFO,1,[The system provides struct mallinfo]),,[
2040#if HAVE_SYS_TYPES_H
2041#include <sys/types.h>
2042#endif
eb824054 2043#if HAVE_MALLOC_H
2044#include <malloc.h>
6a9f6389 2045#endif])
eb824054 2046
6a9f6389 2047AC_CHECK_MEMBERS([struct mallinfo.mxfast],,,[
2048#if HAVE_SYS_TYPES_H
2049#include <sys/types.h>
2050#endif
2051#if HAVE_MALLOC_H
2052#include <malloc.h>
2053#endif])
090089c4 2054
08caf8c6 2055dnl Override rusage() detect on MinGW because is emulated in source code
2056case "$host_os" in
2057 mingw|mingw32)
2058 AC_DEFINE(HAVE_STRUCT_RUSAGE)
2059 ac_cv_func_getrusage='yes'
d750d7bf 2060 echo "Using own rusage on Windows."
08caf8c6 2061 ;;
2062 *)
2063 AC_CHECK_TYPE(struct rusage,AC_DEFINE(HAVE_STRUCT_RUSAGE,1,[The system provides struct rusage]),,[
8ff51bba 2064#if HAVE_SYS_TIME_H
2065#include <sys/time.h>
2066#endif
b54a6789 2067#if HAVE_SYS_RESOURCE_H
2068#include <sys/resource.h>
6a9f6389 2069#endif])
08caf8c6 2070 ;;
2071esac
b54a6789 2072
6a9f6389 2073AC_CHECK_MEMBERS([struct iphdr.ip_hl],,,[
2074#if HAVE_SYS_TYPES_H
2075#include <sys/types.h>
2076#endif
a025a745 2077#include <netinet/in.h>
2078#include <netinet/in_systm.h>
6ad85e8a 2079#include <netinet/ip.h>
b05490a8 2080#if defined (__linux__) || defined (__CYGWIN__)
6ad85e8a 2081#define ip_hl ihl
2082#endif
2083#ifndef __linux__
b05490a8 2084#ifndef __CYGWIN__
6ad85e8a 2085#define iphdr ip
b05490a8 2086#endif
6a9f6389 2087#endif])
a025a745 2088
090089c4 2089dnl Check for typedefs
77d6bd88 2090AC_CHECK_SIZEOF(void *)
090089c4 2091
0409a509 2092dnl 8 bit integers - int8_t
2093dnl if this is defined we trust it to be 8 bits
2094AC_CHECK_TYPE(int8_t,[
2095 AC_CHECK_SIZEOF(int8_t,,SQUID_DEFAULT_SIZEOF_INCLUDES)
2096 AC_DEFINE(HAVE_INT8_T,1,[int8_t is defined in system headers])
2097 ],,SQUID_DEFAULT_INCLUDES)
2098
2099dnl fallback #1
2100AC_CHECK_TYPE(char,[
2101 AC_CHECK_SIZEOF(char,,SQUID_DEFAULT_SIZEOF_INCLUDES)
2102 AC_DEFINE(HAVE_CHAR,1,[char is defined in system headers])
2103 ],,SQUID_DEFAULT_INCLUDES)
2104
2105dnl unsigned 8 bit ints - u_int8_t
2106dnl if this is defined we trust it to be 8 bits
2107AC_CHECK_TYPE(u_int8_t,[
2108 AC_CHECK_SIZEOF(u_int8_t,,SQUID_DEFAULT_SIZEOF_INCLUDES)
2109 AC_DEFINE(HAVE_U_INT8_T,1,[u_int8_t is defined in system headers])
2110 ],,SQUID_DEFAULT_INCLUDES)
2111
2112dnl fallback #1
2113dnl if this is defined we trust it to be 8 bits
2114AC_CHECK_TYPE(uint8_t,[
2115 AC_CHECK_SIZEOF(uint8_t,,SQUID_DEFAULT_SIZEOF_INCLUDES)
2116 AC_DEFINE(HAVE_UINT8_T,1,[uint8_t is defined in system headers])
2117 ],,SQUID_DEFAULT_INCLUDES)
2118
2119dnl 16 bit integers - int16_t
6a9f6389 2120dnl if this is defined we trust it to be 16 bits
62266438 2121AC_CHECK_TYPE(int16_t,[
2122 AC_CHECK_SIZEOF(int16_t,,SQUID_DEFAULT_SIZEOF_INCLUDES)
2123 AC_DEFINE(HAVE_INT16_T,1,[int16_t is defined in system headers])
2124 ],,SQUID_DEFAULT_INCLUDES)
6a9f6389 2125
2126dnl fallback #1
2127AC_CHECK_TYPE(short,[
856e69c5 2128 AC_CHECK_SIZEOF(short,,SQUID_DEFAULT_SIZEOF_INCLUDES)
6a9f6389 2129 AC_DEFINE(HAVE_SHORT,1,[short is defined in system headers])
2130 ],,SQUID_DEFAULT_INCLUDES)
2131
2132dnl fallback #2
2133AC_CHECK_TYPE(int,[
856e69c5 2134 AC_CHECK_SIZEOF(int,,SQUID_DEFAULT_SIZEOF_INCLUDES)
6a9f6389 2135 AC_DEFINE(HAVE_INT,1,[int is defined in system headers])
2136 ],,SQUID_DEFAULT_INCLUDES)
2137
2138dnl unsigned 16 bit ints - u_int16_t
2139dnl if this is defined we trust it to be 16 bits
62266438 2140AC_CHECK_TYPE(u_int16_t,[
2141 AC_CHECK_SIZEOF(u_int16_t,,SQUID_DEFAULT_SIZEOF_INCLUDES)
2142 AC_DEFINE(HAVE_U_INT16_T,1,[u_int16_t is defined in system headers])
2143 ],,SQUID_DEFAULT_INCLUDES)
6a9f6389 2144
2145dnl fallback #1
2146dnl if this is defined we trust it to be 16 bits
62266438 2147AC_CHECK_TYPE(uint16_t,[
2148 AC_CHECK_SIZEOF(uint16_t,,SQUID_DEFAULT_SIZEOF_INCLUDES)
2149 AC_DEFINE(HAVE_UINT16_T,1,[uint16_t is defined in system headers])
2150 ],,SQUID_DEFAULT_INCLUDES)
6a9f6389 2151
2152dnl 32 bit signed int - int32_t
2153dnl if this is defined we trust it to be 32 bits
62266438 2154AC_CHECK_TYPE(int32_t,[
2155 AC_CHECK_SIZEOF(int32_t,,SQUID_DEFAULT_SIZEOF_INCLUDES)
2156 AC_DEFINE(HAVE_INT32_T,1,[int32_t is defined in system headers])
2157 ],,SQUID_DEFAULT_INCLUDES)
6a9f6389 2158
2159dnl fallback #1
2160AC_CHECK_TYPE(long,[
856e69c5 2161 AC_CHECK_SIZEOF(long,,SQUID_DEFAULT_SIZEOF_INCLUDES)
6a9f6389 2162 AC_DEFINE(HAVE_LONG,1,[long is defined in system headers])
2163 ],,SQUID_DEFAULT_INCLUDES)
2164
2165dnl 32 bit unsigned int - u_int32_t
2166dnl if this is defined we trust it to be 32 bits
62266438 2167AC_CHECK_TYPE(u_int32_t,[
2168 AC_CHECK_SIZEOF(u_int32_t,,SQUID_DEFAULT_SIZEOF_INCLUDES)
2169 AC_DEFINE(HAVE_U_INT32_T,1,[u_int32_t is defined in system headers])
2170 ],,SQUID_DEFAULT_INCLUDES)
6a9f6389 2171
2172dnl fallback #1
2173dnl if this is defined we trust it to be 32 bits
62266438 2174AC_CHECK_TYPE(uint32_t,[
2175 AC_CHECK_SIZEOF(uint32_t,,SQUID_DEFAULT_SIZEOF_INCLUDES)
2176 AC_DEFINE(HAVE_UINT32_T,1,[uint32_t is defined in system headers])
2177 ],,SQUID_DEFAULT_INCLUDES)
6a9f6389 2178
2179dnl 64 bit signed - int64_t
2180dnl if this is defind we trust it to be 64 bits
62266438 2181AC_CHECK_TYPE(int64_t,[
2182 AC_CHECK_SIZEOF(int64_t,,SQUID_DEFAULT_SIZEOF_INCLUDES)
2183 AC_DEFINE(HAVE_INT64_T,1,[int64_t is defined in system headers])
2184 ],,SQUID_DEFAULT_INCLUDES)
6a9f6389 2185
2186dnl fallback #1
2187dnl if this is defind we trust it to be 64 bits
62266438 2188AC_CHECK_TYPE(__int64,[
2189 AC_CHECK_SIZEOF(__int64,,SQUID_DEFAULT_SIZEOF_INCLUDES)
2190 AC_DEFINE(HAVE___INT64,1,[__int64 is defined in system headers])
2191 ],,SQUID_DEFAULT_INCLUDES)
6a9f6389 2192
2193dnl fallback #2
2194AC_CHECK_TYPE(long long,[
856e69c5 2195 AC_CHECK_SIZEOF(long long,,SQUID_DEFAULT_SIZEOF_INCLUDES)
6a9f6389 2196 AC_DEFINE(HAVE_LONG_LONG,1,[long long is defined in system headers])
2197 ],,SQUID_DEFAULT_INCLUDES)
2198
2199dnl 64 bit unsigned - u_int64_t
2200dnl if this is defind we trust it to be 64 bits
62266438 2201AC_CHECK_TYPE(u_int64_t,[
2202 AC_CHECK_SIZEOF(u_int64_t,,SQUID_DEFAULT_SIZEOF_INCLUDES)
2203 AC_DEFINE(HAVE_U_INT64_T,1,[u_int64_t is defined in system headers])
2204 ],,SQUID_DEFAULT_INCLUDES)
6a9f6389 2205
2206dnl fallback #1
2207dnl if this is defind we trust it to be 64 bits
62266438 2208AC_CHECK_TYPE(uint64_t,[
2209 AC_CHECK_SIZEOF(uint64_t,,SQUID_DEFAULT_SIZEOF_INCLUDES)
2210 AC_DEFINE(HAVE_UINT64_T,1,[uint64_t is defined in system headers])
2211 ],,SQUID_DEFAULT_INCLUDES)
6a9f6389 2212
588e71df 2213dnl On Solaris 9 x86, gcc may includes a "fixed" set of old system include files
2214dnl that is incompatible with the updated Solaris header files.
2215dnl For this reason, we must check if pad128_t and upad128_t are defined.
2216AC_CHECK_TYPE(pad128_t,
2217 AC_DEFINE(HAVE_PAD128_T,1,[pad128_t is defined in system headers]),
2218 ,SQUID_DEFAULT_INCLUDES)
2219
2220AC_CHECK_TYPE(upad128_t,
2221 AC_DEFINE(HAVE_UPAD128_T,1,[upad128_t is defined in system headers]),
2222 ,SQUID_DEFAULT_INCLUDES)
2223
6a9f6389 2224AC_CHECK_TYPE(pid_t, AC_DEFINE(HAVE_PID_T,1,[pid_t is defined by the system headers]),,SQUID_DEFAULT_INCLUDES)
856e69c5 2225AC_CHECK_TYPE(size_t, [AC_CHECK_SIZEOF(size_t,,SQUID_DEFAULT_SIZEOF_INCLUDES)
6a9f6389 2226 AC_DEFINE(HAVE_SIZE_T,1,[size_t is defined by the system headers])],,SQUID_DEFAULT_INCLUDES)
2227AC_CHECK_TYPE(ssize_t, AC_DEFINE(HAVE_SSIZE_T,1,[ssize_t is defined by the system headers]),,SQUID_DEFAULT_INCLUDES)
856e69c5 2228AC_CHECK_TYPE(off_t,[ AC_CHECK_SIZEOF(off_t,,SQUID_DEFAULT_SIZEOF_INCLUDES)
6a9f6389 2229 AC_DEFINE(HAVE_OFF_T,1,[off_t is defined by the system headers])],,SQUID_DEFAULT_INCLUDES)
2230AC_CHECK_TYPE(mode_t, AC_DEFINE(HAVE_MODE_T,1,[mode_t is defined by the system headers]),,SQUID_DEFAULT_INCLUDES)
2231AC_CHECK_TYPE(fd_mask, AC_DEFINE(HAVE_FD_MASK,1,[fd_mask is defined by the system headers]),,SQUID_DEFAULT_INCLUDES)
adcceb47 2232
77d6bd88 2233dnl Check for special functions
2234AC_FUNC_ALLOCA
2235
6a9f6389 2236AC_CHECK_TYPE(socklen_t,AC_DEFINE(HAVE_SOCKLEN_T,1,[socklen_t is defined by the system headers]),,[
2237#include <sys/types.h>
6637e3a5 2238#include <sys/socket.h>
2239#if STDC_HEADERS
2240#include <stdlib.h>
2241#include <stddef.h>
6a9f6389 2242#endif])
6637e3a5 2243
6a9f6389 2244AC_CHECK_TYPE(mtyp_t,AC_DEFINE(HAVE_MTYP_T,1,[mtyp_t is defined by the system headers]),,[#include <sys/types.h>
aea1be68 2245#include <sys/ipc.h>
6a9f6389 2246#include <sys/msg.h>])
aea1be68 2247
090089c4 2248dnl Check for needed libraries
30a4f2a8 2249AC_CHECK_LIB(nsl, main)
6716b242 2250AC_CHECK_LIB(socket, main)
4b26fae9 2251case "$host_os" in
2252 mingw|mingw32)
2253 AC_MSG_CHECKING(for winsock)
2254 save_LIBS="$LIBS"
2255 for curlib in ws2_32 wsock32; do
2256 LIBS="$LIBS -l$curlib"
2257 AC_TRY_LINK([
2258 char __attribute__((stdcall)) socket(int,int,int);
2259 char __attribute__((stdcall)) select(int,int,int,int,int);
2260 char __attribute__((stdcall)) closesocket(int);
2261 char __attribute__((stdcall)) gethostname(int,int);
2262 ],
2263 [
2264 socket(1,2,3);
2265 select(1,2,3,4,5);
2266 closesocket(1);
2267 gethostname(1,2);
2268 ],
2269 have_winsock=yes, have_winsock=no)
2270
2271 if test $have_winsock = yes; then
2272 ac_cv_func_select='yes'
2273 if test $curlib = ws2_32; then
2274 have_winsock=winsock2
2275 fi
2276 break
2277 fi
2278 LIBS="$save_LIBS"
2279 done
2280 AC_MSG_RESULT($have_winsock)
2281 ;;
2282esac
94d48591 2283
3c641669 2284dnl Ripped from the Samba sources
2285AC_CACHE_CHECK([for unix domain sockets],squid_cv_unixsocket, [
2286 AC_TRY_COMPILE([
2287#include <sys/types.h>
2288#include <stdlib.h>
2289#include <stddef.h>
2290#include <sys/socket.h>
2291#include <sys/un.h>],
2292[
2293 struct sockaddr_un sunaddr;
2294 sunaddr.sun_family = AF_UNIX;
2295],
2296 squid_cv_unixsocket=yes,squid_cv_unixsocket=no)])
2297if test x"$squid_cv_unixsocket" = x"yes"; then
6a9f6389 2298 AC_DEFINE(HAVE_UNIXSOCKET,1,[Do we have unix sockets? (required for the winbind ntlm helper])
3c641669 2299fi
2300dnl end rip
2301
94d48591 2302 AC_CHECK_LIB(gnumalloc, main)
2303 if test "$ac_cv_lib_gnumalloc_main" = "yes"; then
2304 echo "Disabling extended malloc functions when using gnumalloc"
2305 ac_cv_func_mallinfo=no
2306 ac_cv_func_mallocblksize=no
2307 ac_cv_func_mallopt=no
2308 else
2309 case "$host" in
2310 *-sun-solaris*)
2311 echo "skipping libmalloc check for $host"
2312 ;;
2313 i386-*-freebsd*)
2314 echo "skipping libmalloc check for $host"
2315 ;;
2316 *)
2317
2318 AC_CHECK_LIB(malloc, main)
2319 ;;
2320 esac
2321 fi
94d48591 2322
6716b242 2323AC_CHECK_LIB(bsd, main)
be79ade0 2324AC_CHECK_LIB(regex, main, [REGEXLIB="-lregex"])
04a56fa3 2325AC_CHECK_LIB(bind, gethostbyname)
2326if test $ac_cv_lib_bind_gethostbyname = "no" ; then
2327 case "$host" in
78743365 2328 i386-*-freebsd*)
2329 echo "skipping libresolv checks for $host"
2330 ;;
2331 *)
78743365 2332 AC_CHECK_LIB(resolv, main)
2333 ;;
04a56fa3 2334 esac
2335fi
08caf8c6 2336case "$host_os" in
2337mingw|mingw32)
2338 echo "Use MSVCRT for math functions."
2339 ;;
2340 *)
2341 AC_CHECK_LIB(m, main)
2342 ;;
2343esac
090089c4 2344
2345dnl Check for libcrypt
8154dd82 2346dnl Some of our helpers use crypt(3) which may be in libc, or in
2347dnl libcrypt (eg FreeBSD)
c1dc012a 2348AC_CHECK_LIB(crypt, crypt, [CRYPTLIB="-lcrypt"])
3d4022fa 2349
2350dnl Solaris10 provides MD5 natively through libmd5
c1dc012a 2351AC_CHECK_LIB(md5, MD5Init, [CRYPTLIB="$CRYPTLIB -lmd5"])
3d4022fa 2352
be79ade0 2353AC_SUBST(CRYPTLIB)
77f675ad 2354
042b1f8a 2355dnl Check for libdl, used by auth_modules/PAM
8154dd82 2356if test "$with_dl" = "yes"; then
2357 AC_CHECK_LIB(dl, dlopen)
2358fi
042b1f8a 2359
e5f4e1b0 2360dnl Check for pthreads
2361dnl We use pthreads when doing ASYNC I/O
8154dd82 2362if test "$with_pthreads" = "yes"; then
fa035612 2363 SQUID_CFLAGS="$SQUID_CFLAGS -D_REENTRANT"
2364 SQUID_CXXFLAGS="$SQUID_CXXFLAGS -D_REENTRANT"
e685e3c6 2365 case "$host" in
2366 i386-unknown-freebsd*)
2367 if test "$GCC" = "yes" ; then
2368 if test -z "$PRESET_LDFLAGS"; then
2369 LDFLAGS="$LDFLAGS -pthread"
2370 fi
2371 fi
2372 ;;
2373 *-solaris2.*)
2374 if test "$GCC" = "yes" ; then
fa035612 2375 SQUID_CFLAGS="$SQUID_CFLAGS -pthreads"
2376 SQUID_CXXFLAGS="$SQUID_CXXFLAGS -pthreads"
e685e3c6 2377 else
fa035612 2378 SQUID_CFLAGS="$SQUID_CFLAGS -mt"
2379 SQUID_CXXFLAGS="$SQUID_CXXFLAGS -mt"
e685e3c6 2380 fi
2381 ;;
2382 esac
8154dd82 2383 AC_CHECK_LIB(pthread, main)
2384fi
71f8abc8 2385
f85c88f3 2386dnl Check for librt
2387dnl We use AIO in the coss store
8154dd82 2388if test "$with_aio" = "yes"; then
580e2134 2389 dnl On some systems POSIX AIO functions are in libaio
2390 AC_CHECK_LIB(rt, aio_read,,AC_CHECK_LIB(aio, aio_read))
8154dd82 2391fi
f85c88f3 2392
86ec11aa 2393dnl -lintl is needed on SCO version 3.2v4.2 for strftime()
2394dnl Robert Side <rside@aiinc.bc.ca>
2395dnl Mon, 18 Jan 1999 17:48:00 GMT
2396case "$host" in
2397 *-pc-sco3.2*)
2398 AC_CHECK_LIB(intl, strftime)
2399 ;;
2400esac
2401
20e869bf 2402dnl On MinGW OpenLDAP is not available, so LDAP helpers can be linked
2403dnl only with Windows LDAP libraries using -lwldap32
2404case "$host_os" in
2405mingw|mingw32)
2406 LIB_LDAP="-lwldap32"
2407 LIB_LBER=""
2408 ;;
2409*)
2410 LIB_LDAP="-lldap"
2411 dnl LDAP helpers need to know if -llber is needed or not
2412 AC_CHECK_LIB(lber, main, [LIB_LBER="-llber"])
2413 ;;
2414esac
2415AC_SUBST(LIB_LDAP)
2416AC_SUBST(LIB_LBER)
2417
b7a1c19e 2418dnl Check for libdb
2419DBLIB=
01b4931d 2420dnl 1.85
a258dfca 2421AC_CACHE_CHECK(if dbopen needs -ldb,ac_cv_dbopen_libdb, [
32d0bbd7 2422SAVED_LIBS="$LIBS"; LIBS="$LIBS -ldb"
2423 AC_TRY_LINK([
a258dfca 2424#if HAVE_SYS_TYPES_H
2425#include <sys/types.h>
2426#endif
2427#if HAVE_LIMITS_H
2428#include <limits.h>
2429#endif
2430#if HAVE_DB_185_H
2431#include <db_185.h>
2432#elif HAVE_DB_H
2433#include <db.h>
2434#endif],
2435 [dbopen((void *)0L, 0, 0, DB_HASH, (void *)0L)],
a258dfca 2436 ac_cv_dbopen_libdb="yes",
2437 ac_cv_dbopen_libdb="no")
32d0bbd7 2438LIBS="$SAVED_LIBS"
a258dfca 2439])
2b2161bb 2440if test $ac_cv_dbopen_libdb = yes; then
32d0bbd7 2441 LIB_DB="-ldb"
2442fi
01b4931d 2443AC_SUBST(LIB_DB)
b7a1c19e 2444
77f675ad 2445dnl System-specific library modifications
2446dnl
2447case "$host" in
88738790 2448 i386-*-solaris2.*)
7149a49f 2449 if test "$GCC" = "yes"; then
2450 echo "Removing -O for gcc on $host"
80e92d6d 2451 CFLAGS="`echo $CFLAGS | sed -e 's/-O[[0-9]]*//'`"
7149a49f 2452 fi
2453 ;;
77f675ad 2454 *-sgi-irix*)
2455 echo "Removing -lsocket for IRIX..."
6716b242 2456 LIBS=`echo $LIBS | sed -e s/-lsocket//`
77f675ad 2457 echo "Removing -lnsl for IRIX..."
6716b242 2458 LIBS=`echo $LIBS | sed -e s/-lnsl//`
c415c128 2459 ac_cv_lib_nsl_main=no
b44c0fb4 2460 echo "Removing -lbsd for IRIX..."
2461 LIBS=`echo $LIBS | sed -e s/-lbsd//`
77f675ad 2462 ;;
4ba0bd0e 2463dnl From: c0032033@ws.rz.tu-bs.de (Joerg Schumacher)
2464dnl Date: Thu, 17 Oct 1996 04:09:30 +0200
2465dnl Please change your configure script. AIX doesn't need -lbsd.
2466 *-ibm-aix*)
2467 echo "Removing -lbsd for AIX..."
2468 LIBS=`echo $LIBS | sed -e s/-lbsd//`
2469 ;;
30a4f2a8 2470 *m88k*)
fa035612 2471 SQUID_CFLAGS="$SQUID_CFLAGS -D_SQUID_MOTOROLA_"
2472 SQUID_CXXFLAGS="$SQUID_CXXFLAGS -D_SQUID_MOTOROLA_"
6a9f6389 2473 AC_DEFINE(GETTIMEOFDAY_NO_TZP,1,[If gettimeofday is known to take only one argument])
7149a49f 2474 ;;
580ce039 2475 [*-*-solaris2.[0-4]])
6a9f6389 2476 AC_DEFINE(GETTIMEOFDAY_NO_TZP,1)
30a4f2a8 2477 ;;
711fa75e 2478 [*-sony-newsos[56]*])
6a9f6389 2479 AC_DEFINE(GETTIMEOFDAY_NO_TZP,1)
f62c73dc 2480 ;;
77f675ad 2481esac
090089c4 2482
57faa85a 2483# Remove optimization for GCC 2.95.[123]
d20b1cd0 2484# gcc -O[2] on *BSD and Linux (x86) causes pointers to magically become NULL
2485if test "$GCC" = "yes"; then
2486 GCCVER=`$CC -v 2>&1 | awk '$2 == "version" {print $3}'`
2487 case "$GCCVER" in
57faa85a 2488 [2.95.[123]])
d20b1cd0 2489 echo "Removing -O for gcc on $host with GCC $GCCVER"
2490 CFLAGS="`echo $CFLAGS | sed -e 's/-O[[0-9]]*//'`"
2491 ;;
2492 esac
2493fi
2494
176d10ee 2495# Recommended by Balint Nagy Endre <bne@CareNet.hu>
2496case "$host" in
2497 *-univel-sysv4.2MP)
2498 if test `uname -v` = "2.03"; then
2499 echo "disabling mallinfo for $host"
2500 ac_cv_func_mallinfo=no
2501 fi
2502 ;;
2503esac
2504
84cecfd2 2505dnl This has to be before AC_CHECK_FUNCS
2506# Disable poll() on certain platforms. Override by setting ac_cv_func_poll
2507# when running configure.
2508if test -z "$ac_cv_func_poll"; then
2509 case "$host" in
2510 [alpha-dec-osf3.*])
2511 # John Kay (jkay@nlanr.net) 19970818
2512 echo "disabling poll for $host..."
2513 ac_cv_func_poll='no'
2514 ;;
2515 [*-hp-hpux*.*])
2516 # Duane Wessels
2517 echo "disabling poll for $host..."
2518 ac_cv_func_poll='no'
2519 ;;
2520 [*-linux-*])
f5cec332 2521 # Henrik Nordstrom (hno@squid-cache.org) 19980817
9bb83c8b 2522 # poll is problematic on Linux. We disable it
2523 # by default until Linux gets it right.
b6a2f15e 2524 rev=`uname -r | awk -F. '{printf "%03d%03d",$1,$2}'`
2525 if test $rev -lt 002002; then
2526 echo "disabling poll for $host < 2.2..."
2527 ac_cv_func_poll='no'
2528 fi
84cecfd2 2529 ;;
c68e9c6b 2530 [powerpc-ibm-aix4.1.*])
2531 # Mike Laster (mlaster@metavillage.com) 19981021
2532 echo "disabling poll for $host..."
2533 ac_cv_func_poll='no'
2534 ;;
86ec11aa 2535 [*-pc-sco3.2*])
2536 # Robert Side <rside@aiinc.bc.ca>
2537 # Mon, 18 Jan 1999 17:48:00 GMT
2538 echo "disabling poll for $host..."
2539 ac_cv_func_poll='no'
2540 ;;
84cecfd2 2541 esac
2542fi
176d10ee 2543
08caf8c6 2544dnl Override statfs() detect on MinGW becasue is emulated in source code
2545case "$host_os" in
2546mingw|mingw32)
2547 ac_cv_func_statfs='yes'
2548 ;;
2549esac
2550
6716b242 2551dnl Check for library functions
2552AC_CHECK_FUNCS(\
ce3d30fb 2553 backtrace_symbols_fd \
3a144521 2554 bcopy \
2555 bswap_16 \
2556 bswap_32 \
f9576890 2557 bswap16 \
2558 bswap32 \
4ac29a5b 2559 fchmod \
6716b242 2560 getdtablesize \
8505e57b 2561 getpagesize \
230c091c 2562 getpass \
3a144521 2563 getrlimit \
30a4f2a8 2564 getrusage \
9c1d8929 2565 getspnam \
379d5751 2566 gettimeofday \
52303a3d 2567 glob \
f9576890 2568 htobe16 \
2569 htole16 \
d474c7a6 2570 kqueue\
30a4f2a8 2571 lrand48 \
6716b242 2572 mallinfo \
0f5efab0 2573 mallocblksize \
6716b242 2574 mallopt \
2ae6b9b0 2575 memcpy \
30a4f2a8 2576 memmove \
dac27377 2577 memset \
b99a6dec 2578 mkstemp \
1812b6c7 2579 mktime \
88738790 2580 mstats \
84cecfd2 2581 poll \
62ae0622 2582 prctl \
3a144521 2583 pthread_attr_setschedparam \
cd748f27 2584 pthread_attr_setscope \
2585 pthread_setschedparam \
42b51993 2586 pthread_sigmask \
c68e9c6b 2587 putenv \
b1e77ec1 2588 random \
6716b242 2589 regcomp \
2590 regexec \
2591 regfree \
30a4f2a8 2592 res_init \
af76ec93 2593 __res_init \
4915be3b 2594 rint \
a4ba1105 2595 sbrk \
3a144521 2596 select \
234967c9 2597 seteuid \
c415c128 2598 setgroups \
30a4f2a8 2599 setpgrp \
6716b242 2600 setrlimit \
30a4f2a8 2601 setsid \
2602 sigaction \
11430c03 2603 snprintf \
1ccc0d40 2604 socketpair \
30a4f2a8 2605 srand48 \
b1e77ec1 2606 srandom \
0343b99c 2607 statfs \
1cd53467 2608 strsep \
2733d426 2609 strtoll \
6716b242 2610 sysconf \
2611 syslog \
234967c9 2612 timegm \
28da5e0d 2613 vsnprintf \
6716b242 2614)
f5e5c4cf 2615dnl ... and some we provide local replacements for
2616AC_REPLACE_FUNCS(\
2617 drand48 \
cc192b50 2618 inet_ntop \
2619 inet_pton \
f5e5c4cf 2620 initgroups \
cc192b50 2621 getaddrinfo \
2622 getnameinfo \
f5e5c4cf 2623 strerror \
2624 tempnam \
2625)
6716b242 2626
d06d566f 2627# check for crypt, may require -lcrypt
2628SAVED_LIBS="$LIBS"
2629LIBS="$LIBS $CRYPTLIB"
2630AC_CHECK_FUNCS(crypt)
2631LIBS="$SAVED_LIBS"
2632
d474c7a6 2633# Check for libepoll
2634EPOLL_LIB=
2635AC_CHECK_LIB(epoll, epoll_ctl, [EPOLL_LIBS="-lepoll"])
2636AC_SUBST(EPOLL_LIBS)
2637
2638# Check for epoll_ctl, may need -lepoll
2639SAVED_LIBS="$LIBS"
2640LIBS="$LIBS $LIB_EPOLL"
2641AC_CHECK_FUNCS(epoll_ctl)
2642LIBS="$SAVED_LIBS"
2643
2644dnl Verify that epoll really works
2645if test $ac_cv_func_epoll_ctl = yes; then
2646 AC_CACHE_CHECK(if epoll works, ac_cv_epoll_works,
2647 AC_TRY_RUN([
2648#include <sys/epoll.h>
2649#include <stdlib.h>
2650#include <stdio.h>
2651int main(int argc, char **argv)
2652{
2653 int fd = epoll_create(256);
2654 if (fd < 0) {
2655 perror("epoll_create:");
2656 exit(1);
2657 }
2658 exit(0);
2659}
2660 ], [ac_cv_epoll_works=yes], [ac_cv_epoll_works=no]))
328c40de 2661fi
d474c7a6 2662
1b3db6d9 2663dnl Magic which checks whether we are forcing a type of comm loop we
2664dnl are actually going to (ab)use
2665
2666dnl Actually do the define magic now
2667dnl mostly ripped from squid-commloops, thanks to adrian and benno
2668
d474c7a6 2669if test -n "$SELECT_TYPE"; then
2670 : # Already decided above. Nothing to do here
6564c397 2671elif test -z "$disable_epoll" && test "$ac_cv_epoll_works" = "yes" ; then
a46d2c0e 2672 SELECT_TYPE="epoll"
6564c397 2673elif test -z "$disable_kqueue" && test "$ac_cv_func_kqueue" = "yes" ; then
2674 SELECT_TYPE="kqueue"
2675elif test -z "$disable_poll" && test "$ac_cv_func_poll" = "yes" ; then
6c9797b9 2676 SELECT_TYPE="poll"
6564c397 2677elif test -z "$disable_select" && test "$ac_cv_func_select" = "yes" ; then
663c0a38 2678 case "$host_os" in
2679 mingw|mingw32)
2680 SELECT_TYPE="select_win32"
663c0a38 2681 ;;
2682 *)
2683 SELECT_TYPE="select"
663c0a38 2684 ;;
2685 esac
1b3db6d9 2686else
a46d2c0e 2687 echo "Eep! Can't find poll, kqueue, epoll, or select!"
1b3db6d9 2688 echo "I'll try select and hope for the best."
2689 SELECT_TYPE="select"
6a9f6389 2690 AC_DEFINE(USE_SELECT,1)
1b3db6d9 2691fi
d474c7a6 2692
2693echo "Using ${SELECT_TYPE} for the IO loop."
2694
2695AM_CONDITIONAL([USE_POLL], [test $SELECT_TYPE = poll])
2696AM_CONDITIONAL([USE_EPOLL], [test $SELECT_TYPE = epoll])
2697AM_CONDITIONAL([USE_SELECT], [test $SELECT_TYPE = select])
2698AM_CONDITIONAL([USE_SELECT_SIMPLE], [test $SELECT_TYPE = select_simple])
2699AM_CONDITIONAL([USE_SELECT_WIN32], [test $SELECT_TYPE = select_win32])
2700AM_CONDITIONAL([USE_KQUEUE], [test $SELECT_TYPE = kqueue])
2701AM_CONDITIONAL([USE_DEVPOLL], [test $SELECT_TYPE = devpoll])
2702
2703case $SELECT_TYPE in
2704epoll)
2705 AC_DEFINE(USE_EPOLL,1,[Use epoll() for the IO loop])
2706 ;;
2707poll)
2708 AC_DEFINE(USE_POLL,1,[Use poll() for the IO loop])
2709 ;;
2710kqueue)
2711 AC_DEFINE(USE_KQUEUE,1,[Use kqueue() for the IO loop])
2712 ;;
2713select_win32)
2714 AC_DEFINE(USE_SELECT_WIN32,1,[Use Winsock select() for the IO loop])
2715 ;;
2716select)
2717 AC_DEFINE(USE_SELECT,1,[Use select() for the IO loop])
2718 ;;
2719esac
1b3db6d9 2720
2721
d06d566f 2722
60939927 2723dnl Yay! Another Linux brokenness. Its not good enough
2724dnl to know that setresuid() exists, because RedHat 5.0 declares
2725dnl setresuid() but doesn't implement it.
2726dnl
2727AC_CACHE_CHECK(if setresuid is implemented, ac_cv_func_setresuid,
5c51415d 2728 AC_TRY_RUN([
60939927 2729#include <stdlib.h>
5c51415d 2730 int main() {
2731 if(setresuid(-1,-1,-1)) {
2732 perror("setresuid:");
2733 exit(1);
60939927 2734 }
2735 exit(0);
5c51415d 2736 }
2737 ],ac_cv_func_setresuid="yes",ac_cv_func_setresuid="no")
60939927 2738)
5c51415d 2739if test "$ac_cv_func_setresuid" = "yes" ; then
6a9f6389 2740 AC_DEFINE(HAVE_SETRESUID,1,[Yay! Another Linux brokenness. Its not good enough to know that setresuid() exists, because RedHat 5.0 declare setresuid() but doesn't implement it.])
5c51415d 2741fi
60939927 2742
1cd53467 2743AM_CONDITIONAL(NEED_OWN_STRSEP, false)
2744if test "$ac_cv_func_strsep" = "no" ; then
2745 AM_CONDITIONAL(NEED_OWN_STRSEP, true)
2746fi
2747
2733d426 2748AM_CONDITIONAL(NEED_OWN_STRTOLL, false)
2749if test "$ac_cv_func_strtoll" = "no" ; then
2750 AM_CONDITIONAL(NEED_OWN_STRTOLL, true)
2751fi
2752
eee79a2e 2753dnl
2754dnl Test for va_copy
2755dnl
2756AC_CACHE_CHECK(if va_copy is implemented, ac_cv_func_va_copy,
2757 AC_TRY_RUN([
2758 #include <stdarg.h>
2759 void f (int i, ...) {
2760 va_list args1, args2;
2761 va_start (args1, i);
2762 va_copy (args2, args1);
2763 if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
2764 exit (1);
2765 va_end (args1); va_end (args2);
2766 }
2767 int main() {
2768 f (0, 42);
2769 return 0;
2770 }
2771 ],ac_cv_func_va_copy="yes",ac_cv_func_va_copy="no")
2772)
2773if test "$ac_cv_func_va_copy" = "yes" ; then
a45f884d 2774 AC_DEFINE(HAVE_VA_COPY, 1, [If your system have va_copy])
eee79a2e 2775fi
2776
2777dnl
2778dnl Some systems support __va_copy
2779dnl
2780AC_CACHE_CHECK(if __va_copy is implemented, ac_cv_func___va_copy,
2781 AC_TRY_RUN([
2782 #include <stdarg.h>
2783 void f (int i, ...) {
2784 va_list args1, args2;
2785 va_start (args1, i);
2786 __va_copy (args2, args1);
2787 if (va_arg (args2, int) != 42 || va_arg (args1, int) != 42)
2788 exit (1);
2789 va_end (args1); va_end (args2);
2790 }
2791 int main() {
2792 f (0, 42);
2793 return 0;
2794 }
2795 ],ac_cv_func___va_copy="yes",ac_cv_func___va_copy="no")
2796)
2797if test "$ac_cv_func___va_copy" = "yes" ; then
a45f884d 2798 AC_DEFINE(HAVE___VA_COPY, 1, [Some systems have __va_copy instead of va_copy])
eee79a2e 2799fi
c3d0c8b5 2800
5cafc1d6 2801dnl IP-Filter support requires ipf header files. These aren't
2802dnl installed by default, so we need to check for them
2803if test "$IPF_TRANSPARENT" ; then
2804 AC_MSG_CHECKING(if IP-Filter header files are installed)
42b51993 2805 # hold on to your hats...
2806 if test "$ac_cv_header_ip_compat_h" = "yes" ||
2807 test "$ac_cv_header_ip_fil_compat_h" = "yes" ||
87d21d8b 2808 test "$ac_cv_header_netinet_ip_compat_h" = "yes" ||
2809 test "$ac_cv_header_netinet_ip_fil_compat_h" = "yes" ; then
42b51993 2810 have_ipfilter_compat_header="yes"
2811 fi
2812 if test "x$have_ipfilter_compat_header" = "xyes" &&
eb824054 2813 test "$ac_cv_header_ip_fil_h" = "yes" &&
2814 test "$ac_cv_header_ip_nat_h" = "yes" ; then
2815 IPF_TRANSPARENT="yes"
2816 AC_DEFINE(IPF_TRANSPARENT, 1)
42b51993 2817 elif test "$have_ipfilter_compat_header" = "yes" &&
eb824054 2818 test "$ac_cv_header_netinet_ip_fil_h" = "yes" &&
2819 test "$ac_cv_header_netinet_ip_nat_h" = "yes" ; then
2820 IPF_TRANSPARENT="yes"
2821 AC_DEFINE(IPF_TRANSPARENT, 1)
2822 else
5cafc1d6 2823 IPF_TRANSPARENT="no"
2824 AC_DEFINE(IPF_TRANSPARENT, 0)
5cafc1d6 2825 fi
2826 AC_MSG_RESULT($IPF_TRANSPARENT)
2827fi
2828if test "$IPF_TRANSPARENT" = "no" ; then
2829 echo "WARNING: Cannot find necessary IP-Filter header files"
2830 echo " Transparent Proxy support WILL NOT be enabled"
2831 sleep 10
8f6ca20d 2832elif test "$IPF_TRANSPARENT" = "yes" ; then
2833dnl On Solaris Ipfilter includes expect that SOLARIS2 is defined with the
2834dnl Solaris minor version (8, 9, 10, ...)
2835 case "$host" in
2836 *-solaris*)
2837 solrev=`uname -r | sh -c 'IFS=. read j n x; echo $n'`
2838 CFLAGS="-DSOLARIS2=$solrev $CFLAGS"
20b3ae10 2839 CXXFLAGS="-DSOLARIS2=$solrev $CXXFLAGS"
8f6ca20d 2840 ;;
2841 *)
2842 ;;
2843 esac
5cafc1d6 2844fi
2845
2b0dd4ac 2846dnl PF support requires a header file.
2847if test "$PF_TRANSPARENT" ; then
2848 AC_MSG_CHECKING(if PF header file is installed)
2849 # hold on to your hats...
2850 if test "$ac_cv_header_net_pfvar_h" = "yes"; then
2851 PF_TRANSPARENT="yes"
2852 AC_DEFINE(PF_TRANSPARENT, 1)
2853 else
2854 PF_TRANSPARENT="no"
2855 AC_DEFINE(PF_TRANSPARENT, 0)
2856 fi
2857 AC_MSG_RESULT($PF_TRANSPARENT)
2858fi
2859if test "$PF_TRANSPARENT" = "no" ; then
2860 echo "WARNING: Cannot find necessary PF header file"
2861 echo " Transparent Proxy support WILL NOT be enabled"
2862 sleep 10
2863fi
2864
d852fbad 2865dnl Linux-Netfilter support requires Linux 2.4 kernel header files.
2866dnl Shamelessly copied from above
2867if test "$LINUX_NETFILTER" ; then
d6d62546 2868 AC_MSG_CHECKING(if Linux (Netfilter) kernel header files are installed)
d852fbad 2869 # hold on to your hats...
2870 if test "$ac_cv_header_linux_netfilter_ipv4_h" = "yes"; then
2871 LINUX_NETFILTER="yes"
2872 AC_DEFINE(LINUX_NETFILTER, 1)
2873 else
2874 LINUX_NETFILTER="no"
2875 AC_DEFINE(LINUX_NETFILTER, 0)
2876 fi
2877 AC_MSG_RESULT($LINUX_NETFILTER)
2878fi
2879if test "$LINUX_NETFILTER" = "no" ; then
d6d62546 2880 echo "WARNING: Cannot find necessary Linux kernel (Netfilter) header files"
2881 echo " Linux Transparent Proxy support WILL NOT be enabled"
d852fbad 2882 sleep 10
2883fi
2884
fc68f6b1 2885dnl Linux Netfilter/TPROXY support requires some specific header files
2886dnl Shamelessly copied from shamelessly copied from above
2887if test "$LINUX_TPROXY" ; then
2888 AC_MSG_CHECKING(if TPROXY header files are installed)
2889 # hold on to your hats...
2890 if test "$ac_cv_header_linux_netfilter_ipv4_ip_tproxy_h" = "yes" && test "$LINUX_NETFILTER" = "yes"; then
2891 LINUX_TPROXY="yes"
2892 AC_DEFINE(LINUX_TPROXY, 1, [Enable real Transparent Proxy support for Netfilter TPROXY.])
2893 else
2894 LINUX_TPROXY="no"
2895 AC_DEFINE(LINUX_TPROXY, 0, [Enable real Transparent Proxy support for Netfilter TPROXY.])
2896 fi
2897 AC_MSG_RESULT($LINUX_TPROXY)
2898fi
2899if test "$LINUX_TPROXY" = "no" && test "$LINUX_NETFILTER" = "yes"; then
2900 echo "WARNING: Cannot find TPROXY headers, you need to install the"
2901 echo "tproxy package from:"
2902 echo " - lynx http://www.balabit.com/downloads/tproxy/"
2903 sleep 10
2904fi
2905
91bc414e 2906if test -z "$USE_GNUREGEX" ; then
2907 case "$host" in
2908 *-sun-solaris2.[[0-4]])
2909 USE_GNUREGEX="yes"
2910 ;;
2911 *-next-nextstep*)
2912 USE_GNUREGEX="yes"
2913 ;;
2914 esac
2915fi
7a081912 2916AC_MSG_CHECKING(if GNUregex needs to be compiled)
91bc414e 2917if test -z "$USE_GNUREGEX"; then
55878dfd 2918if test "$ac_cv_func_regcomp" = "no" || test "$USE_GNUREGEX" = "yes" ; then
74946a0f 2919 USE_GNUREGEX="yes"
00fa2c12 2920else
0cccc031 2921 AC_TRY_COMPILE([#include <sys/types.h>
2922#include <regex.h>],[regex_t t; regcomp(&t,"",0);],
91bc414e 2923 USE_GNUREGEX="no",
2924 USE_GNUREGEX="yes")
2925fi
00fa2c12 2926fi
74946a0f 2927AC_MSG_RESULT($USE_GNUREGEX)
2928if test "$USE_GNUREGEX" = "yes"; then
26675bf4 2929 REGEXLIB="-lregex"
7a081912 2930 LIBREGEX="libregex.a"
6a9f6389 2931 AC_DEFINE(USE_GNUREGEX,1,[Define if we should use GNU regex])
7a081912 2932fi
26675bf4 2933AC_SUBST(REGEXLIB)
00fa2c12 2934AC_SUBST(LIBREGEX)
7a081912 2935
5c51415d 2936dnl Not cached since people are likely to tune this
e924600d 2937AC_MSG_CHECKING(Default FD_SETSIZE value)
2938AC_TRY_RUN([
2939#if HAVE_STDIO_H
2940#include <stdio.h>
2941#endif
2942#if HAVE_UNISTD_H
2943#include <unistd.h>
2944#endif
2945#if HAVE_SYS_TIME_H
2946#include <sys/time.h>
2947#endif
2948#if HAVE_SYS_SELECT_H
2949#include <sys/select.h>
2950#endif
2951#if HAVE_SYS_TYPES_H
2952#include <sys/types.h>
2953#endif
2954main() {
635e6242 2955 FILE *fp = fopen("conftestval", "w");
2956 fprintf (fp, "%d\n", FD_SETSIZE);
e924600d 2957 exit(0);
2958}
2959],
2960DEFAULT_FD_SETSIZE=`cat conftestval`,
2961DEFAULT_FD_SETSIZE=256,
2962DEFAULT_FD_SETSIZE=256)
2963AC_MSG_RESULT($DEFAULT_FD_SETSIZE)
6a9f6389 2964AC_DEFINE_UNQUOTED(DEFAULT_FD_SETSIZE, $DEFAULT_FD_SETSIZE, [Default FD_SETSIZE value])
e924600d 2965
f49be7d1 2966
5c51415d 2967dnl Not cached since people are likely to tune this
234967c9 2968AC_MSG_CHECKING(Maximum number of filedescriptors we can open)
c76d8acc 2969dnl damn! FreeBSD's pthreads breaks dup2().
5132a9eb 2970TLDFLAGS="$LDFLAGS"
f49be7d1 2971if test -n "$squid_filedescriptors_num" ; then
2972 SQUID_MAXFD=$squid_filedescriptors_num
2973 AC_MSG_RESULT($SQUID_MAXFD (user-forced))
2974else
f49be7d1 2975 case $host in
2976 i386-unknown-freebsd*)
2977 if echo "$LDFLAGS" | grep -q pthread; then
2978 LDFLAGS=`echo $LDFLAGS | sed -e "s/-pthread//"`
2979 fi
2980 esac
2981 AC_TRY_RUN([
8cca06da 2982#include <stdio.h>
234967c9 2983#include <unistd.h>
30a4f2a8 2984#include <sys/time.h> /* needed on FreeBSD */
234967c9 2985#include <sys/param.h>
2986#include <sys/resource.h>
2987main() {
635e6242 2988 FILE *fp;
234967c9 2989 int i,j;
42b51993 2990#if defined(__CYGWIN32__) || defined (__CYGWIN__)
b05490a8 2991 /* getrlimit and sysconf returns bogous values on cygwin32.
df087e68 2992 * Number of fds is virtually unlimited in cygwin (sys/param.h)
b05490a8 2993 * __CYGWIN32__ is deprecated.
df087e68 2994 */
2995 i = NOFILE;
b05490a8 2996#else
2997#if HAVE_SETRLIMIT
234967c9 2998 struct rlimit rl;
2999#if defined(RLIMIT_NOFILE)
3000 if (getrlimit(RLIMIT_NOFILE, &rl) < 0) {
3001 perror("getrlimit: RLIMIT_NOFILE");
3002 } else {
3003 rl.rlim_cur = rl.rlim_max; /* set it to the max */
3004 if (setrlimit(RLIMIT_NOFILE, &rl) < 0) {
3005 perror("setrlimit: RLIMIT_NOFILE");
3006 }
3007 }
3008#elif defined(RLIMIT_OFILE)
3009 if (getrlimit(RLIMIT_OFILE, &rl) < 0) {
3010 perror("getrlimit: RLIMIT_OFILE");
3011 } else {
3012 rl.rlim_cur = rl.rlim_max; /* set it to the max */
3013 if (setrlimit(RLIMIT_OFILE, &rl) < 0) {
3014 perror("setrlimit: RLIMIT_OFILE");
3015 }
3016 }
3017#endif /* RLIMIT_NOFILE */
3018#endif /* HAVE_SETRLIMIT */
d9399075 3019 /* by starting at 2^14, we will never get higher
3020 than 2^15 for SQUID_MAXFD */
3021 i = j = 1<<14;
3022 while (j) {
3023 j >>= 1;
3024 if (dup2(0, i) < 0) {
3025 i -= j;
3026 } else {
3027 close(i);
3028 i += j;
3029 }
3030 }
3031 i++;
b05490a8 3032#endif /* IF !DEF CYGWIN */
635e6242 3033 fp = fopen("conftestval", "w");
a4d7e961 3034 fprintf (fp, "%d\n", i & ~0x3F);
234967c9 3035 exit(0);
3036}
f49be7d1 3037 ],
3038 SQUID_MAXFD=`cat conftestval`,
3039 SQUID_MAXFD=256,
3040 SQUID_MAXFD=256)
4b26fae9 3041 dnl Microsoft MSVCRT.DLL supports 2048 maximum FDs
3042 case "$host_os" in
3043 mingw|mingw32)
3044 SQUID_MAXFD="2048"
3045 ;;
3046 esac
f49be7d1 3047 AC_MSG_RESULT($SQUID_MAXFD)
3048fi
6a9f6389 3049AC_DEFINE_UNQUOTED(SQUID_MAXFD, $SQUID_MAXFD,[Maximum number of open filedescriptors])
b9cc811d 3050if test "$SQUID_MAXFD" -lt 512 ; then
80ab193b 3051 echo "WARNING: $SQUID_MAXFD may not be enough filedescriptors if your"
3052 echo " cache will be very busy. Please see the FAQ page"
2b6662ba 3053 echo " http://www.squid-cache.org/FAQ/FAQ-11.html#filedescriptors"
e692ff35 3054 echo " on how to increase your filedescriptor limit"
933cc58d 3055 sleep 10
80ab193b 3056fi
c76d8acc 3057LDFLAGS="$TLDFLAGS"
234967c9 3058
d0f9207a 3059if test `expr $SQUID_MAXFD % 64` != 0; then
a4d7e961 3060 echo "WARNING: $SQUID_MAXFD is not an multiple of 64. This may cause issues"
3061 echo " on certain platforms."
3062 sleep 10
3063fi
3064
5c51415d 3065dnl Not cached since people are likely to tune this
30a4f2a8 3066AC_MSG_CHECKING(Default UDP send buffer size)
3067AC_TRY_RUN([
8cca06da 3068#include <stdlib.h>
3069#include <stdio.h>
30a4f2a8 3070#include <sys/types.h>
3071#include <sys/socket.h>
3072#include <netinet/in.h>
3073main ()
3074{
635e6242 3075 FILE *fp;
30a4f2a8 3076 int fd,val=0,len=sizeof(int);
3077 if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) exit(1);
3078 if (getsockopt(fd, SOL_SOCKET, SO_SNDBUF, &val, &len) < 0) exit(1);
3079 if (val<=0) exit(1);
635e6242 3080 fp = fopen("conftestval", "w");
3081 fprintf (fp, "%d\n", val);
30a4f2a8 3082 exit(0);
3083}
3084],
6a9f6389 3085SQUID_DETECT_UDP_SO_SNDBUF=`cat conftestval`,
3086SQUID_DETECT_UDP_SO_SNDBUF=16384,
3087SQUID_DETECT_UDP_SO_SNDBUF=16384)
3088AC_MSG_RESULT($SQUID_DETECT_UDP_SO_SNDBUF)
3089AC_DEFINE_UNQUOTED(SQUID_DETECT_UDP_SO_SNDBUF, $SQUID_DETECT_UDP_SO_SNDBUF,[UDP send buffer size])
30a4f2a8 3090
5c51415d 3091dnl Not cached since people are likely to tune this
30a4f2a8 3092AC_MSG_CHECKING(Default UDP receive buffer size)
3093AC_TRY_RUN([
8cca06da 3094#include <stdlib.h>
3095#include <stdio.h>
30a4f2a8 3096#include <sys/types.h>
3097#include <sys/socket.h>
3098#include <netinet/in.h>
3099main ()
3100{
635e6242 3101 FILE *fp;
30a4f2a8 3102 int fd,val=0,len=sizeof(int);
3103 if ((fd = socket(AF_INET, SOCK_DGRAM, 0)) < 0) exit(1);
3104 if (getsockopt(fd, SOL_SOCKET, SO_RCVBUF, &val, &len) < 0) exit(1);
3105 if (val <= 0) exit(1);
635e6242 3106 fp = fopen("conftestval", "w");
3107 fprintf (fp, "%d\n", val);
30a4f2a8 3108 exit(0);
3109}
3110],
6a9f6389 3111SQUID_DETECT_UDP_SO_RCVBUF=`cat conftestval`,
3112SQUID_DETECT_UDP_SO_RCVBUF=16384,
3113SQUID_DETECT_UDP_SO_RCVBUF=16384)
3114AC_MSG_RESULT($SQUID_DETECT_UDP_SO_RCVBUF)
3115AC_DEFINE_UNQUOTED(SQUID_DETECT_UDP_SO_RCVBUF, $SQUID_DETECT_UDP_SO_RCVBUF,[UDP receive buffer size])
30a4f2a8 3116
5c51415d 3117dnl Not cached since people are likely to tune this
30a4f2a8 3118AC_MSG_CHECKING(Default TCP send buffer size)
3119AC_TRY_RUN([
8cca06da 3120#include <stdlib.h>
3121#include <stdio.h>
30a4f2a8 3122#include <sys/types.h>
3123#include <sys/socket.h>
3124#include <netinet/in.h>
3125main ()
3126{
635e6242 3127 FILE *fp;
30a4f2a8 3128 int fd,val=0,len=sizeof(int);
3129 if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) exit(1);
3130 if (getsockopt(fd, SOL_SOCKET, SO_SNDBUF, &val, &len) < 0) exit(1);
3131 if (val <= 0) exit(1);
635e6242 3132 fp = fopen("conftestval", "w");
3133 fprintf (fp, "%d\n", val);
30a4f2a8 3134 exit(0);
3135}
3136],
3137SQUID_TCP_SO_SNDBUF=`cat conftestval`,
1c481e00 3138SQUID_TCP_SO_SNDBUF=16384,
3139SQUID_TCP_SO_SNDBUF=16384)
30a4f2a8 3140AC_MSG_RESULT($SQUID_TCP_SO_SNDBUF)
2aa6ca58 3141if test $SQUID_TCP_SO_SNDBUF -gt 32768; then
3142 echo "Limiting send buffer size to 32K"
3143 SQUID_TCP_SO_SNDBUF=32768
3144fi
6a9f6389 3145AC_DEFINE_UNQUOTED(SQUID_TCP_SO_SNDBUF, $SQUID_TCP_SO_SNDBUF,[TCP send buffer size])
30a4f2a8 3146
5c51415d 3147dnl Not cached since people are likely to tune this
30a4f2a8 3148AC_MSG_CHECKING(Default TCP receive buffer size)
3149AC_TRY_RUN([
8cca06da 3150#include <stdlib.h>
3151#include <stdio.h>
30a4f2a8 3152#include <sys/types.h>
3153#include <sys/socket.h>
3154#include <netinet/in.h>
3155main ()
3156{
635e6242 3157 FILE *fp;
30a4f2a8 3158 int fd,val=0,len=sizeof(int);
3159 if ((fd = socket(AF_INET, SOCK_STREAM, 0)) < 0) exit(1);
3160 if (getsockopt(fd, SOL_SOCKET, SO_RCVBUF, &val, &len) < 0) exit(1);
3161 if (val <= 0) exit(1);
635e6242 3162 fp = fopen("conftestval", "w");
3163 fprintf (fp, "%d\n", val);
30a4f2a8 3164 exit(0);
3165}
3166],
3167SQUID_TCP_SO_RCVBUF=`cat conftestval`,
1c481e00 3168SQUID_TCP_SO_RCVBUF=16384,
3169SQUID_TCP_SO_RCVBUF=16384)
30a4f2a8 3170AC_MSG_RESULT($SQUID_TCP_SO_RCVBUF)
2aa6ca58 3171if test $SQUID_TCP_SO_RCVBUF -gt 65535; then
3172 echo "Limiting receive buffer size to 64K"
3173 SQUID_TCP_SO_RCVBUF=65535
3174fi
6a9f6389 3175AC_DEFINE_UNQUOTED(SQUID_TCP_SO_RCVBUF, $SQUID_TCP_SO_RCVBUF,[TCP receive buffer size])
5c51415d 3176AC_CACHE_CHECK(if sys_errlist is already defined, ac_cv_needs_sys_errlist,
9bc73deb 3177 AC_TRY_COMPILE([#include <stdio.h>],[char *s = sys_errlist;],
5c51415d 3178 ac_cv_needs_sys_errlist="no",
3179 ac_cv_needs_sys_errlist="yes")
3180)
3181if test "$ac_cv_needs_sys_errlist" = "yes" ; then
6a9f6389 3182 AC_DEFINE(NEED_SYS_ERRLIST,1,[If we need to declare sys_errlist[] as external])
5c51415d 3183fi
30a4f2a8 3184
5c51415d 3185dnl Not cached since people are likely to change this
6bf65235 3186AC_MSG_CHECKING(for libresolv _dns_ttl_ hack)
3187AC_TRY_LINK(extern int _dns_ttl_;,return _dns_ttl_;,
3188[AC_MSG_RESULT(yes)
6a9f6389 3189AC_DEFINE(LIBRESOLV_DNS_TTL_HACK,1,[If libresolv.a has been hacked to export _dns_ttl_])],
6bf65235 3190AC_MSG_RESULT(no))
3191
a937d5e3 3192AC_MSG_CHECKING(if inet_ntoa() actually works)
3193AC_TRY_RUN([
3194#include <stdlib.h>
3195#include <stdio.h>
3196#include <sys/types.h>
3197#include <netinet/in.h>
3198#include <arpa/inet.h>
3199main ()
3200{
635e6242 3201 FILE *fp;
a937d5e3 3202 struct in_addr in;
3203 in.s_addr = inet_addr("1.2.3.4");
635e6242 3204 fp = fopen("conftestval", "w");
3205 fprintf (fp, "%s\n", inet_ntoa(in));
a937d5e3 3206 exit(0);
3207}
3208],
3209INET_NTOA_RESULT=`cat conftestval`,
3210INET_NTOA_RESULT="broken",
3211INET_NTOA_RESULT="broken")
3212if test "$INET_NTOA_RESULT" = "1.2.3.4" ; then
3213 AC_MSG_RESULT("yes")
3214else
3215 AC_MSG_RESULT("no")
4b26fae9 3216 case "$host_os" in
3217 mingw|mingw32)
3218 echo "Using Win32 resolver instead."
3219 ;;
f5e5c4cf 3220 *)
4b26fae9 3221 echo "Will use our own inet_ntoa()."
3222 AC_LIBOBJ(inet_ntoa)
3223# echo "WARNING: This looks bad, and probably prevents Squid from working."
3224# echo " If you're on IRIX and using GCC 2.8, you probably need"
3225# echo " to use the IRIX C compiler instead."
3226# sleep 10
3227 ;;
3228 esac
a937d5e3 3229fi
3230
b6a2f15e 3231if test "$ac_cv_header_sys_statvfs_h" = "yes" ; then
c68e9c6b 3232AC_MSG_CHECKING(for working statvfs() interface)
3233AC_TRY_COMPILE([
3234#include <stdlib.h>
3235#include <stdio.h>
3236#include <sys/types.h>
3237#include <sys/statvfs.h>
3238],
3239[
3240struct statvfs sfs;
3241sfs.f_blocks = sfs.f_bfree = sfs.f_frsize =
3242sfs.f_files = sfs.f_ffree = 0;
3243statvfs("/tmp", &sfs);
3244],
3245 ac_cv_func_statvfs=yes,
3246 ac_cv_func_statvfs=no)
3247AC_MSG_RESULT($ac_cv_func_statvfs)
6b8e7481 3248if test "$ac_cv_func_statvfs" = "yes" ; then
6a9f6389 3249 AC_DEFINE(HAVE_STATVFS,1,[If your system has statvfs(), and if it actually works!])
b6a2f15e 3250fi
6b8e7481 3251fi
c68e9c6b 3252
cc192b50 3253dnl Detect what resolver fields we have available to use...
3254AC_CACHE_CHECK(for _res_ext.nsaddr_list, ac_cv_have_res_ext_nsaddr_list,
3255AC_TRY_COMPILE([
3256#if HAVE_SYS_TYPES_H
3257#include <sys/types.h>
3258#endif
3259#if HAVE_NETINET_IN_H
3260#include <netinet/in.h>
3261#endif
3262#if HAVE_ARPA_INET_H
3263#include <arpa/inet.h>
3264#endif
3265#if HAVE_ARPA_NAMESER_H
3266#include <arpa/nameser.h>
3267#endif
3268#if HAVE_RESOLV_H
3269#include <resolv.h>
3270#endif
3271],
3272[_res_ext.nsaddr_list[[0]].s_addr;],
3273ac_cv_have_res_ext_nsaddr_list="yes",
3274ac_cv_have_res_ext_nsaddr_list="no"))
3275if test "$ac_cv_have_res_ext_nsaddr_list" = "yes" ; then
3276 AC_DEFINE(_SQUID_RES_NSADDR6_LARRAY,_res_ext.nsaddr_list,[If _res_ext structure has nsaddr_list member])
3277 AC_DEFINE(_SQUID_RES_NSADDR6_COUNT,ns6count,[Nameserver Counter for IPv6 _res_ext])
3278fi
3279
3280if test "$_SQUID_RES_NSADDR6_LIST" == ""; then
3281AC_CACHE_CHECK(for _res._u._ext.nsaddrs, ac_cv_have_res_ext_nsaddrs,
3282AC_TRY_COMPILE([
3283#if HAVE_SYS_TYPES_H
3284#include <sys/types.h>
3285#endif
3286#if HAVE_NETINET_IN_H
3287#include <netinet/in.h>
3288#endif
3289#if HAVE_ARPA_INET_H
3290#include <arpa/inet.h>
3291#endif
3292#if HAVE_ARPA_NAMESER_H
3293#include <arpa/nameser.h>
3294#endif
3295#if HAVE_RESOLV_H
3296#include <resolv.h>
3297#endif
3298],
3299[_res._u._ext.nsaddrs[[0]]->sin6_addr;],
3300ac_cv_have_res_ext_nsaddrs="yes",
3301ac_cv_have_res_ext_nsaddrs="no"))
3302if test "$ac_cv_have_res_ext_nsaddrs" = "yes" ; then
3303 AC_DEFINE(_SQUID_RES_NSADDR6_LPTR,_res._u._ext.nsaddrs,[If _res structure has _ext.nsaddrs member])
3304 AC_DEFINE(_SQUID_RES_NSADDR6_COUNT,_res._u._ext.nscount6,[Nameserver Counter for IPv6 _res])
3305fi
3306fi
3307
c68e9c6b 3308AC_CACHE_CHECK(for _res.nsaddr_list, ac_cv_have_res_nsaddr_list,
3309AC_TRY_COMPILE([
3310#if HAVE_SYS_TYPES_H
3311#include <sys/types.h>
3312#endif
3313#if HAVE_NETINET_IN_H
3314#include <netinet/in.h>
3315#endif
3316#if HAVE_ARPA_INET_H
3317#include <arpa/inet.h>
3318#endif
3319#if HAVE_ARPA_NAMESER_H
3320#include <arpa/nameser.h>
3321#endif
3322#if HAVE_RESOLV_H
3323#include <resolv.h>
3324#endif
3325],
3326[_res.nsaddr_list[[0]];],
3327ac_cv_have_res_nsaddr_list="yes",
3328ac_cv_have_res_nsaddr_list="no"))
3329if test $ac_cv_have_res_nsaddr_list = "yes" ; then
cc192b50 3330 AC_DEFINE(_SQUID_RES_NSADDR_LIST,_res.nsaddr_list,[If _res structure has nsaddr_list member])
3331 AC_DEFINE(_SQUID_RES_NSADDR_COUNT,_res.nscount,[Nameserver counter for IPv4 _res])
c68e9c6b 3332fi
3333
cc192b50 3334if test "$_SQUID_RES_NSADDR_LIST" == ""; then
c68e9c6b 3335AC_CACHE_CHECK(for _res.ns_list, ac_cv_have_res_ns_list,
3336AC_TRY_COMPILE([
3337#if HAVE_SYS_TYPES_H
3338#include <sys/types.h>
3339#endif
3340#if HAVE_NETINET_IN_H
3341#include <netinet/in.h>
3342#endif
3343#if HAVE_ARPA_INET_H
3344#include <arpa/inet.h>
3345#endif
3346#if HAVE_ARPA_NAMESER_H
3347#include <arpa/nameser.h>
3348#endif
3349#if HAVE_RESOLV_H
3350#include <resolv.h>
3351#endif
3352],
3353[_res.ns_list[[0]].addr;],
3354ac_cv_have_res_ns_list="yes",
3355ac_cv_have_res_ns_list="no"))
3356if test $ac_cv_have_res_ns_list = "yes" ; then
cc192b50 3357 AC_DEFINE(_SQUID_RES_NSADDR_LIST,_res.ns_list,[If _res structure has ns_list member])
3358 AC_DEFINE(_SQUID_RES_NSADDR_COUNT,_res.nscount,[Nameserver counter for IPv4 _res])
c68e9c6b 3359fi
3360fi
3361
090089c4 3362dnl Need the debugging version of malloc if available
3363XTRA_OBJS=''
6509a1a0 3364if test "$ac_cv_lib_malloc_main" = "yes" ; then
090089c4 3365 if test -r /usr/lib/debug/malloc.o ; then
3366 XTRA_OBJS="$XTRA_OBJS /usr/lib/debug/malloc.o"
3367 fi
3368 if test -r /usr/lib/debug/mallocmap.o ; then
3369 XTRA_OBJS="$XTRA_OBJS /usr/lib/debug/mallocmap.o"
3370 fi
3371fi
2bbd722b 3372
090089c4 3373AC_SUBST(XTRA_OBJS)
3374
38fea766 3375if test -z "$XTRA_LIBS"; then
3376 XTRA_LIBS="$LIBS"
0f5a16f8 3377 dnl minor cleanup
3378 XTRA_LIBS=`echo $XTRA_LIBS | sed -e "s/ */ /g"`
38fea766 3379 LIBS=''
3380fi
090089c4 3381AC_SUBST(XTRA_LIBS)
3382
090089c4 3383dnl Clean up after OSF/1 core dump bug
3384rm -f core
3385
6a9f6389 3386AC_CONFIG_FILES([\
a2794549 3387 Makefile \
3388 lib/Makefile \
a2794549 3389 scripts/Makefile \
3390 scripts/RunCache \
3391 scripts/RunAccel \
3392 src/Makefile \
3393 src/fs/Makefile \
3394 src/repl/Makefile \
3395 src/auth/Makefile \
a2794549 3396 contrib/Makefile \
3397 snmplib/Makefile \
3398 icons/Makefile \
3399 errors/Makefile \
1077c1b8 3400 test-suite/Makefile \
99db07b3 3401 doc/Makefile \
0c510f3c 3402 helpers/Makefile \
3403 helpers/basic_auth/Makefile \
3404 helpers/basic_auth/LDAP/Makefile \
3405 helpers/basic_auth/MSNT/Makefile \
3406 helpers/basic_auth/NCSA/Makefile \
3407 helpers/basic_auth/PAM/Makefile \
3408 helpers/basic_auth/SMB/Makefile \
6e785d85 3409 helpers/basic_auth/mswin_sspi/Makefile \
0c510f3c 3410 helpers/basic_auth/YP/Makefile \
3411 helpers/basic_auth/getpwnam/Makefile \
3412 helpers/basic_auth/multi-domain-NTLM/Makefile \
3413 helpers/basic_auth/SASL/Makefile \
bcf74be7 3414 helpers/basic_auth/POP3/Makefile \
002d9b03 3415 helpers/basic_auth/DB/Makefile \
d80aac12 3416 helpers/basic_auth/squid_radius_auth/Makefile \
0c510f3c 3417 helpers/digest_auth/Makefile \
3418 helpers/digest_auth/password/Makefile \
55013f9c 3419 helpers/digest_auth/ldap/Makefile \
89f77e43 3420 helpers/digest_auth/eDirectory/Makefile \
0c510f3c 3421 helpers/ntlm_auth/Makefile \
3422 helpers/ntlm_auth/fakeauth/Makefile \
3423 helpers/ntlm_auth/no_check/Makefile \
3424 helpers/ntlm_auth/SMB/Makefile \
3425 helpers/ntlm_auth/SMB/smbval/Makefile \
6e785d85 3426 helpers/ntlm_auth/mswin_sspi/Makefile \
3427 helpers/negotiate_auth/Makefile \
3428 helpers/negotiate_auth/mswin_sspi/Makefile \
3e5d7cdf 3429 helpers/negotiate_auth/squid_kerb_auth/Makefile \
c6588c68 3430 helpers/external_acl/Makefile \
3431 helpers/external_acl/ip_user/Makefile \
3432 helpers/external_acl/ldap_group/Makefile \
74ab8d10 3433 helpers/external_acl/session/Makefile \
c6588c68 3434 helpers/external_acl/unix_group/Makefile \
736a9a4d 3435 helpers/external_acl/wbinfo_group/Makefile \
94ab55b0 3436 helpers/external_acl/mswin_lm_group/Makefile \
3437 tools/Makefile
53cbe3e4 3438])
43ae1d95 3439
377792e4 3440AC_CONFIG_SUBDIRS(lib/libTrie)
3441
6a9f6389 3442AC_OUTPUT