]> git.ipfire.org Git - thirdparty/squid.git/blob - test-suite/buildtests/os-debian.opts
Merge from 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 seing
9 #
10 OPTS=" \
11 --build=i486-linux-gnu \
12 --prefix=/usr \
13 --includedir="\${prefix}/include" \
14 --mandir="\${prefix}/share/man" \
15 --infodir="\${prefix}/share/info" \
16 --sysconfdir=/etc \
17 --localstatedir=/var \
18 --libexecdir="\${prefix}/lib/squid3" \
19 --srcdir=. \
20 --datadir=/usr/share/squid3 \
21 --sysconfdir=/etc/squid3 \
22 --mandir=/usr/share/man \
23 --with-cppunit-basedir=/usr \
24 --with-default-user=proxy \
25 \
26 --disable-maintainer-mode \
27 --disable-dependency-tracking \
28 --enable-inline \
29 --enable-async-io=8 \
30 --enable-storeio="ufs,aufs,coss,diskd,null" \
31 --enable-removal-policies="lru,heap" \
32 --enable-poll \
33 --enable-delay-pools \
34 --enable-cache-digests \
35 --enable-snmp \
36 --enable-htcp \
37 --enable-select \
38 --enable-carp \
39 --with-large-files \
40 --enable-underscores \
41 --enable-icap-client \
42 --enable-auth \
43 --enable-auth-basic="LDAP,MSNT,NCSA,PAM,SASL,SMB,YP,getpwnam,multi-domain-NTLM" \
44 --enable-auth-ntlm="SMB" \
45 --enable-auth-digest="ldap,password" \
46 --enable-external-acl-helpers="ip_user,ldap_group,session,unix_group,wbinfo_group" \
47 --with-filedescriptors=65536 \
48 --enable-epoll \
49 --enable-linux-netfilter \
50 "
51
52 # Debian for some reason builds using explicit 'cc' instead of 'gcc' or automatic
53 export build_alias="i486-linux-gnu"
54 export CC="cc"
55 export CFLAGS="-g -O2 -g -Wall -O2"
56 export LDFLAGS=""
57 export CPPFLAGS=""
58 export CXX="g++"
59 export CXXFLAGS="-g -O2 -g -Wall -O2"
60 export FFLAGS="-g -O2"