]> git.ipfire.org Git - thirdparty/squid.git/blob - test-suite/buildtests/layer-01-minimal.opts
Merged from trunk
[thirdparty/squid.git] / test-suite / buildtests / layer-01-minimal.opts
1 #
2 # Minimal configuration options.
3 # - Everthing that can be disabled is
4 # - Everyhing that can be done without is
5 #
6 #
7 # Check - everything MUST work at this level
8 # distcheck is not possible here since it drops our configure options...
9 MAKETEST="distcheck"
10 #
11 #
12 # The options for this level can be easily generated semi-automatically from configure.in by:
13 # grep -E "^AC_ARG_ENABLE" ./configure.in | grep -o -E "[0-9a-z\-]+[,]" | grep -o -E "[^,]+" >disable.opts
14 # followed by insertion of ' --disable-' and '\' strings
15 #
16 # grep -E "^AC_ARG_WITH" ./configure.in | grep -o -E "[0-9a-z\-]+[,]" | grep -o -E "[^,]+" >without.opts
17 # followed by insertion of ' --without-' and ' \' strings
18 #
19 # sometimes it's just too automatic.. Following options should be just stripped
20 #
21 # --without-default-user \
22 # --without-aufs-threads \
23 # --without-coss-membuf-size \
24 # --without-filedescriptors \
25 # --without-cppunit-basedir \
26 # --without-build-environment \
27 #
28 #
29 OPTS=" \
30 --disable-loadable-modules \
31 --disable-gnuregex \
32 --disable-optimizations \
33 --disable-inline \
34 --disable-debug-cbdata \
35 --disable-xmalloc-statistics \
36 --disable-async-io \
37 --disable-storeio \
38 --disable-disk-io \
39 --disable-removal-policies \
40 --disable-icmp \
41 --disable-delay-pools \
42 --disable-esi \
43 --disable-icap-client \
44 --disable-ecap \
45 --disable-useragent-log \
46 --disable-referer-log \
47 --disable-wccp \
48 --disable-wccpv2 \
49 --disable-kill-parent-hack \
50 --disable-snmp \
51 --disable-cachemgr-hostname \
52 --disable-eui \
53 --disable-htcp \
54 --disable-ssl \
55 --disable-forw-via-db \
56 --disable-cache-digests \
57 --disable-poll \
58 --disable-select \
59 --disable-kqueue \
60 --disable-epoll \
61 --disable-http-violations \
62 --disable-ipfw-transparent \
63 --disable-ipf-transparent \
64 --disable-pf-transparent \
65 --disable-linux-netfilter \
66 --disable-linux-tproxy \
67 --disable-leakfinder \
68 --disable-follow-x-forwarded-for \
69 --disable-ident-lookups \
70 --disable-internal-dns \
71 --disable-default-hostsfile \
72 --disable-auth \
73 --disable-basic-auth-helpers \
74 --disable-ntlm-auth-helpers \
75 --disable-negotiate-auth-helpers \
76 --disable-digest-auth-helpers \
77 --disable-ntlm-fail-open \
78 --disable-external-acl-helpers \
79 --disable-url-rewrite-helpers \
80 --disable-mempools \
81 --disable-win32-service \
82 --disable-unlinkd \
83 --disable-stacktraces \
84 --disable-cpu-profiling \
85 --disable-vary \
86 --disable-ipv6 \
87 --disable-zph-qos \
88 --disable-auto-locale \
89 --disable-translation \
90 \
91 --without-pthreads \
92 --without-aio \
93 --without-dl \
94 --without-large-files \
95 --without-valgrind-debug \
96 --without-ipv6-split-stack \
97 --without-dns-cname \
98 --without-po2html \
99 "
100
101 # Fix the distclean testing.
102 export DISTCHECK_CONFIGURE_FLAGS="${OPTS}"