]> git.ipfire.org Git - thirdparty/squid.git/blob - test-suite/buildtests/os-debian.opts
Merge form trunk
[thirdparty/squid.git] / test-suite / buildtests / os-debian.opts
1 #!/bin/sh
2 #
3 MAKETEST="check installcheck uninstallcheck"
4 #
5 #
6 # Configure options currently used by Debian Packaged Release
7 #
8 # This is to test any release build against what the package maintainers are seeing
9 #
10 # NP: DISTCHECK_CONFIGURE_FLAGS is a magic automake macro for the
11 # distcheck target recursive tests beteen scripted runs.
12 # we use it to perform the same duty between our nested scripts.
13 DISTCHECK_CONFIGURE_FLAGS=" \
14 --build=i486-linux-gnu \
15 --prefix=/usr \
16 --includedir="\${prefix}/include" \
17 --mandir="\${prefix}/share/man" \
18 --infodir="\${prefix}/share/info" \
19 --sysconfdir=/etc \
20 --localstatedir=/var \
21 --libexecdir="\${prefix}/lib/squid3" \
22 --srcdir=. \
23 --datadir=/usr/share/squid3 \
24 --sysconfdir=/etc/squid3 \
25 --mandir=/usr/share/man \
26 --with-cppunit-basedir=/usr \
27 --with-default-user=proxy \
28 \
29 --disable-maintainer-mode \
30 --disable-dependency-tracking \
31 --enable-inline \
32 --enable-async-io=8 \
33 --enable-storeio="ufs,aufs,coss,diskd,null" \
34 --enable-removal-policies="lru,heap" \
35 --enable-poll \
36 --enable-delay-pools \
37 --enable-cache-digests \
38 --enable-snmp \
39 --enable-htcp \
40 --enable-select \
41 --enable-carp \
42 --with-large-files \
43 --enable-underscores \
44 --enable-icap-client \
45 --enable-auth \
46 --enable-auth-basic="LDAP,MSNT,NCSA,PAM,SASL,SMB,YP,getpwnam,multi-domain-NTLM" \
47 --enable-auth-ntlm="SMB" \
48 --enable-auth-digest="ldap,password" \
49 --enable-external-acl-helpers="ip_user,ldap_group,session,unix_group,wbinfo_group" \
50 --with-filedescriptors=65536 \
51 --enable-epoll \
52 --enable-linux-netfilter \
53 "
54
55 # Debian for some reason builds using explicit 'cc' instead of 'gcc' or automatic
56 export build_alias="i486-linux-gnu"
57 export CC="cc"
58 export CFLAGS="-g -O2 -g -Wall -O2"
59 export LDFLAGS=""
60 export CPPFLAGS=""
61 export CXX="g++"
62 export CXXFLAGS="-g -O2 -g -Wall -O2"
63 export FFLAGS="-g -O2"