]> git.ipfire.org Git - thirdparty/squid.git/blame - acinclude/squid-util.m4
Improved --enable-linux-netfilter handling (now defaults to "auto")
[thirdparty/squid.git] / acinclude / squid-util.m4
CommitLineData
fa522425
FC
1dnl
2dnl AUTHOR: Francesco Chemolli
3dnl
4dnl SQUID Web Proxy Cache http://www.squid-cache.org/
5dnl ----------------------------------------------------------
6dnl Squid is the result of efforts by numerous individuals from
7dnl the Internet community; see the CONTRIBUTORS file for full
8dnl details. Many organizations have provided support for Squid's
9dnl development; see the SPONSORS file for full details. Squid is
10dnl Copyrighted (C) 2001 by the Regents of the University of
11dnl California; see the COPYRIGHT file for full details. Squid
12dnl incorporates software developed and/or copyrighted by other
13dnl sources; see the CREDITS file for full details.
14dnl
15dnl This program is free software; you can redistribute it and/or modify
16dnl it under the terms of the GNU General Public License as published by
17dnl the Free Software Foundation; either version 2 of the License, or
18dnl (at your option) any later version.
19dnl
20dnl This program is distributed in the hope that it will be useful,
21dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
22dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23dnl GNU General Public License for more details.
24dnl
25dnl You should have received a copy of the GNU General Public License
26dnl along with this program; if not, write to the Free Software
27dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
28
29dnl save main environment variables to variables to the namespace defined by the
30dnl first argument (prefix)
31dnl e.g. SQUID_SAVEFLAGS([foo]) will save CFLAGS to foo_CFLAGS etc.
32dnl Saved variables are:
33dnl CFLAGS, CXXFLAGS, LDFLAGS, LIBS plus any variables specified as
34dnl second argument
35AC_DEFUN([SQUID_STATE_SAVE],[
36$1_CFLAGS="${CFLAGS}"
37$1_CXXFLAGS="${CXXFLAGS}"
38$1_LDFLAGS="${LDFLAGS}"
39$1_LIBS="${LIBS}"
bee906c3
FC
40$1_CC="${CC}"
41$1_CXX="${CXX}"
fa522425
FC
42$1_squid_saved_vars="$2"
43for squid_util_var_tosave in $2
44do
45 squid_util_var_tosave2="$1_${squid_util_var_tosave}"
46 eval "${squid_util_var_tosave2}=\"${squid_util_var_tosave}\""
47done
48])
49
50dnl commit the state changes: deleting the temporary state defined in SQUID_STATE_SAVE
51dnl with the same prefix. It's not necessary to specify the extra variables passed
52dnl to SQUID_STATE_SAVE again, they will be automatically reclaimed.
53AC_DEFUN([SQUID_STATE_COMMIT],[
54unset $1_CFLAGS
018a3298 55unset $1_CXXFLAGS
fa522425
FC
56unset $1_LDFLAGS
57unset $1_LIBS
50fbcbd6
FC
58unset $1_CC
59unset $1_CXX
fa522425
FC
60for squid_util_var_tosave in $$1_squid_saved_vars
61do
62 unset ${squid_util_var_tosave2}
63done
64])
65
66dnl rollback state to the call of SQUID_STATE_SAVE with the same namespace argument.
67dnl all temporary state will be cleared, including the custom variables specified
68dnl at call time. It's not necessary to explicitly name them, they will be automatically
69dnl cleared.
70AC_DEFUN([SQUID_STATE_ROLLBACK],[
71CFLAGS="${$1_CFLAGS}"
72CXXFLAGS="${$1_CXXFLAGS}"
73LDFLAGS="${$1_LDFLAGS}"
74LIBS="${$1_LIBS}"
50fbcbd6
FC
75CC="${$1_CC}"
76CXX="${$1_CXX}"
fa522425
FC
77for squid_util_var_tosave in $$1_squid_saved_vars
78do
79 squid_util_var_tosave2="$1_${squid_util_var_tosave}"
80 eval "${squid_util_var_tosave}=\$${squid_util_var_tosave2}"
81done
82SQUID_STATE_COMMIT($1)
83])
84
50fbcbd6
FC
85
86dnl look for modules in the base-directory supplied as argument.
9d6186b1
FC
87dnl fill-in the variable pointed-to by the second argument with the
88dnl space-separated list of modules
50fbcbd6
FC
89AC_DEFUN([SQUID_LOOK_FOR_MODULES],[
90for dir in $1/*; do
91 module="`basename $dir`"
92 if test -d "$dir" && test "$module" != CVS; then
93 $2="$$2 $module"
94 fi
95done
96])
d235bc84
FC
97
98dnl remove duplicates out of a list.
99dnl dnl argument is the name of a variable to be checked and cleaned up
100AC_DEFUN([SQUID_CLEANUP_MODULES_LIST],[
101squid_cleanup_tmp_outlist=""
102for squid_cleanup_tmp in $$1
103do
104 squid_cleanup_tmp_dupe=0
105 for squid_cleanup_tmp2 in $squid_cleanup_tmp_outlist
106 do
107 if test "$squid_cleanup_tmp" = "$squid_cleanup_tmp2"; then
108 squid_cleanup_tmp_dupe=1
109 break
110 fi
111 done
112 if test $squid_cleanup_tmp_dupe -eq 0; then
113 squid_cleanup_tmp_outlist="${squid_cleanup_tmp_outlist} $squid_cleanup_tmp"
114 fi
115done
116$1=$squid_cleanup_tmp_outlist
117unset squid_cleanup_tmp_outlist
118unset squid_cleanup_tmp_dupe
119unset squid_cleanup_tmp2
120unset squid_cleanup_tmp
121])
122
123dnl check that all the modules supplied as a whitespace-separated list (second
124dnl argument) exist as members of the basedir passed as first argument
dc299f29
FC
125dnl call AC_MESG_ERROR if any module does not exist. Also sets individual variables
126dnl named $2_modulename to value "yes"
127dnl e.g. SQUID_CHECK_EXISTING_MODULES([$srcdir/src/fs],[foo_module_candidates])
128dnl where $foo_module_candidates is "foo bar gazonk"
129dnl checks whether $srcdir/src/fs/{foo,bar,gazonk} exist and are all dirs
130dnl AND sets $foo_module_candidates_foo, $foo_module_candidates_bar
131dnl and $foo_module_candidates_gazonk to "yes"
d235bc84 132AC_DEFUN([SQUID_CHECK_EXISTING_MODULES],[
dc299f29 133 for squid_module_check_exist_tmp in $$2
d235bc84 134 do
dc299f29 135 if test -d $1/$squid_module_check_exist_tmp
d235bc84 136 then
dc299f29
FC
137 eval "$2_$squid_module_check_exist_tmp='yes'"
138 #echo "defining $2_$squid_module_check_exist_tmp"
139 else
d235bc84
FC
140 AC_MSG_ERROR([$squid_module_check_exist_tmp not found in $1])
141 fi
142 done
143])
6d1c1ab1
FC
144
145dnl lowercases the contents of the variable whose name is passed by argument
40503c27 146AC_DEFUN([SQUID_TOLOWER_VAR_CONTENTS],[
6d1c1ab1
FC
147 $1=`echo $$1|tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`
148])
149
150dnl uppercases the contents of the variable whose name is passed by argument
151AC_DEFUN([SQUID_TOUPPER_VAR_CONTENTS],[
152 $1=`echo $$1|tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`
153])
8075a4da
FC
154
155dnl like AC_DEFINE_UNQUOTED, but it defines the value to 0 or 1 using well-known textual
156dnl conventions:
157dnl 1: "yes", "true", 1
158dnl 0: "no" , "false", 0, ""
159dnl aborts with an error for unknown values
160AC_DEFUN([SQUID_DEFINE_UNQUOTED],[
161squid_tmp_define=""
162case "$2" in
163 yes|true|1) squid_tmp_define="1" ;;
164 no|false|0) squid_tmp_define="0" ;;
165 *) AC_MSG_ERROR([SQUID_DEFINE[]_UNQUOTED: unrecognized value: $2]) ;;
166esac
167ifelse([$#],3,
168 [AC_DEFINE_UNQUOTED([$1], [$squid_tmp_define],[$3])],
169 [AC_DEFINE_UNQUOTED([$1], [$squid_tmp_define])]
170)
171unset squid_tmp_define
172])
1d87b6b3
FC
173
174dnl aborts with an error specified as the second argument if the first argument doesn't
175dnl contain either "yes" or "no"
176AC_DEFUN([SQUID_YESNO],[
177if test "$1" != "yes" -a "$1" != "no" ; then
178 AC_MSG_ERROR([$2])
179fi
180])