]> git.ipfire.org Git - thirdparty/squid.git/blame - acinclude/squid-util.m4
Removed tcp-banger* and pconn-banger tools (#1236)
[thirdparty/squid.git] / acinclude / squid-util.m4
CommitLineData
bf95c10a 1## Copyright (C) 1996-2022 The Squid Software Foundation and contributors
5d2e6f19
AJ
2##
3## Squid software is distributed under GPLv2+ license and includes
4## contributions from numerous individuals and organizations.
5## Please see the COPYING and CONTRIBUTORS files for details.
6##
fa522425
FC
7
8dnl save main environment variables to variables to the namespace defined by the
9dnl first argument (prefix)
10dnl e.g. SQUID_SAVEFLAGS([foo]) will save CFLAGS to foo_CFLAGS etc.
11dnl Saved variables are:
12dnl CFLAGS, CXXFLAGS, LDFLAGS, LIBS plus any variables specified as
13dnl second argument
14AC_DEFUN([SQUID_STATE_SAVE],[
820c5a3c 15# save state, key is $1
fa522425
FC
16$1_CFLAGS="${CFLAGS}"
17$1_CXXFLAGS="${CXXFLAGS}"
18$1_LDFLAGS="${LDFLAGS}"
19$1_LIBS="${LIBS}"
bee906c3
FC
20$1_CC="${CC}"
21$1_CXX="${CXX}"
7c760558 22$1_CPPFLAGS="${CPPFLAGS}"
fa522425 23$1_squid_saved_vars="$2"
4f0128b6 24for squid_util_var_tosave in $$1_squid_saved_vars
fa522425
FC
25do
26 squid_util_var_tosave2="$1_${squid_util_var_tosave}"
27 eval "${squid_util_var_tosave2}=\"${squid_util_var_tosave}\""
28done
29])
30
31dnl commit the state changes: deleting the temporary state defined in SQUID_STATE_SAVE
32dnl with the same prefix. It's not necessary to specify the extra variables passed
33dnl to SQUID_STATE_SAVE again, they will be automatically reclaimed.
34AC_DEFUN([SQUID_STATE_COMMIT],[
820c5a3c 35# commit state, key is $1
fa522425 36unset $1_CFLAGS
018a3298 37unset $1_CXXFLAGS
fa522425
FC
38unset $1_LDFLAGS
39unset $1_LIBS
50fbcbd6
FC
40unset $1_CC
41unset $1_CXX
7c760558 42unset $1_CPPFLAGS
fa522425
FC
43for squid_util_var_tosave in $$1_squid_saved_vars
44do
820c5a3c 45 unset ${squid_util_var_tosave}
fa522425
FC
46done
47])
48
49dnl rollback state to the call of SQUID_STATE_SAVE with the same namespace argument.
50dnl all temporary state will be cleared, including the custom variables specified
51dnl at call time. It's not necessary to explicitly name them, they will be automatically
52dnl cleared.
53AC_DEFUN([SQUID_STATE_ROLLBACK],[
820c5a3c 54# rollback state, key is $1
fa522425
FC
55CFLAGS="${$1_CFLAGS}"
56CXXFLAGS="${$1_CXXFLAGS}"
57LDFLAGS="${$1_LDFLAGS}"
58LIBS="${$1_LIBS}"
50fbcbd6
FC
59CC="${$1_CC}"
60CXX="${$1_CXX}"
7c760558 61CPPFLAGS="${$1_CPPFLAGS}"
fa522425
FC
62for squid_util_var_tosave in $$1_squid_saved_vars
63do
820c5a3c
FC
64 squid_util_var_tosave2="\$$1_${squid_util_var_tosave}"
65 eval "$squid_util_var_tosave=\"${squid_util_var_tosave2}\""
fa522425
FC
66done
67SQUID_STATE_COMMIT($1)
68])
69
50fbcbd6
FC
70
71dnl look for modules in the base-directory supplied as argument.
9d6186b1 72dnl fill-in the variable pointed-to by the second argument with the
9603207d 73dnl space-separated list of modules
50fbcbd6 74AC_DEFUN([SQUID_LOOK_FOR_MODULES],[
26ffc057 75$2=""
50fbcbd6
FC
76for dir in $1/*; do
77 module="`basename $dir`"
a1c22363 78 AS_IF([test -d "$dir" -a "$module" != "CVS"], $2="$$2 $module")
50fbcbd6
FC
79done
80])
d235bc84 81
a1c22363 82dnl remove commas, extra whitespace, and duplicates out of a list.
61beade2 83dnl argument is the name of a variable to be checked and cleaned up
d235bc84
FC
84AC_DEFUN([SQUID_CLEANUP_MODULES_LIST],[
85squid_cleanup_tmp_outlist=""
a1c22363 86for squid_cleanup_tmp in `echo "$$1" | sed -e 's/,/ /g;s/ */ /g'`
d235bc84
FC
87do
88 squid_cleanup_tmp_dupe=0
89 for squid_cleanup_tmp2 in $squid_cleanup_tmp_outlist
90 do
a1c22363 91 AS_IF([test "$squid_cleanup_tmp" = "$squid_cleanup_tmp2"],[
d235bc84
FC
92 squid_cleanup_tmp_dupe=1
93 break
a1c22363 94 ])
d235bc84 95 done
a1c22363 96 AS_IF([test $squid_cleanup_tmp_dupe -eq 0],[
d235bc84 97 squid_cleanup_tmp_outlist="${squid_cleanup_tmp_outlist} $squid_cleanup_tmp"
a1c22363 98 ])
d235bc84 99done
a1c22363 100$1=`echo "$squid_cleanup_tmp_outlist" | sed -e 's/^ *//'`
d235bc84
FC
101unset squid_cleanup_tmp_outlist
102unset squid_cleanup_tmp_dupe
103unset squid_cleanup_tmp2
104unset squid_cleanup_tmp
105])
106
107dnl check that all the modules supplied as a whitespace-separated list (second
108dnl argument) exist as members of the basedir passed as first argument
dc299f29
FC
109dnl call AC_MESG_ERROR if any module does not exist. Also sets individual variables
110dnl named $2_modulename to value "yes"
111dnl e.g. SQUID_CHECK_EXISTING_MODULES([$srcdir/src/fs],[foo_module_candidates])
112dnl where $foo_module_candidates is "foo bar gazonk"
113dnl checks whether $srcdir/src/fs/{foo,bar,gazonk} exist and are all dirs
9603207d 114dnl AND sets $foo_module_candidates_foo, $foo_module_candidates_bar
dc299f29 115dnl and $foo_module_candidates_gazonk to "yes"
d235bc84 116AC_DEFUN([SQUID_CHECK_EXISTING_MODULES],[
dc299f29 117 for squid_module_check_exist_tmp in $$2
d235bc84 118 do
a1c22363 119 AS_IF([test -d "$1/$squid_module_check_exist_tmp"],[
dc299f29
FC
120 eval "$2_$squid_module_check_exist_tmp='yes'"
121 #echo "defining $2_$squid_module_check_exist_tmp"
a1c22363 122 ],[
d235bc84 123 AC_MSG_ERROR([$squid_module_check_exist_tmp not found in $1])
a1c22363 124 ])
d235bc84
FC
125 done
126])
6d1c1ab1 127
a1c22363
AJ
128dnl Check the requirements for a helper to be built.
129dnl Requirements can be provided as an M4/autoconf script (required.m4)
130dnl which sets a variable BUILD_HELPER to the name of the helper
131dnl directory if the helper is to be added to the built SUBDIRS list.
132dnl Or, a shell script (config.test) which returns 0 exit status if
133dnl the helper is to be built.
134AC_DEFUN([SQUID_CHECK_HELPER],[
135 AS_IF([test "x$helper" = "x$1"],[
e85b7894 136 AS_IF([test -d "$srcdir/src/$2/$1"],[
a1c22363
AJ
137 dnl find helpers providing autoconf M4 requirement checks
138 m4_include(m4_echo([src/$2/$1/required.m4]))
139 dnl find helpers not yet converted to autoconf (or third party drop-in's)
e85b7894 140 AS_IF([test -f "$srcdir/src/$2/$1/config.test" && sh "$srcdir/src/$2/$1/config.test" "$squid_host_os"],[
a1c22363
AJ
141 BUILD_HELPER="$1"
142 ])
143 AS_IF(
144 [test "x$BUILD_HELPER" = "x$1"],
145 squid_cv_BUILD_HELPERS="$squid_cv_BUILD_HELPERS $BUILD_HELPER",
146 [test "x$auto_helpers" = "xyes"],
147 AC_MSG_NOTICE([helper $2/$1 ... found but cannot be built]),
148 [AC_MSG_ERROR([required helper $2/$1 ... found but cannot be built])]
149 )
150 ],[
151 AC_MSG_ERROR([helper $2/$1 ... not found])
152 ])
153 unset BUILD_HELPER
154 ])
155])
156
157dnl macro to simplify and deduplicate logic in all helpers.m4 files
158dnl Usage:
159dnl SQUID_HELPER_FEATURE_CHECK(var_name, default, path, checks)
160dnl
161AC_DEFUN([SQUID_HELPER_FEATURE_CHECK],[
162 auto_helpers=no
163 squid_cv_BUILD_HELPERS=""
164 AS_IF([test "x$enable_$1" = "x"],[enable_$1=$2],
165 [test "x$enable_$1" = "xnone"],[enable_$1=""])
166 AS_IF([test "x$enable_$1" = "xyes"],[
e85b7894 167 SQUID_LOOK_FOR_MODULES([$srcdir/src/$3], enable_$1)
a1c22363
AJ
168 auto_helpers=yes
169 ])
170 SQUID_CLEANUP_MODULES_LIST([enable_$1])
171 AC_MSG_NOTICE([checking $3 helpers: $enable_$1])
172 AS_IF([test "x$enable_$1" != "xno" -a "x$enable_$1" != "x"],[
e85b7894 173 SQUID_CHECK_EXISTING_MODULES([$srcdir/src/$3],[enable_$1])
a1c22363
AJ
174 for helper in $enable_$1 ; do
175 $4
176 done
177 ])
178 AC_MSG_NOTICE([$3 helpers to be built: $squid_cv_BUILD_HELPERS])
179 unset auto_helpers
180])
181
6d1c1ab1 182dnl lowercases the contents of the variable whose name is passed by argument
40503c27 183AC_DEFUN([SQUID_TOLOWER_VAR_CONTENTS],[
6d1c1ab1
FC
184 $1=`echo $$1|tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`
185])
186
187dnl uppercases the contents of the variable whose name is passed by argument
188AC_DEFUN([SQUID_TOUPPER_VAR_CONTENTS],[
189 $1=`echo $$1|tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`
190])
8075a4da 191
0067eb06 192dnl like AC_DEFINE, but it defines the value to 0 or 1 using well-known textual
8075a4da
FC
193dnl conventions:
194dnl 1: "yes", "true", 1
195dnl 0: "no" , "false", 0, ""
196dnl aborts with an error for unknown values
0067eb06 197AC_DEFUN([SQUID_DEFINE_BOOL],[
8075a4da 198squid_tmp_define=""
a1c22363
AJ
199AS_CASE(["$2"],
200 [yes|true|1],[squid_tmp_define="1"],
201 [no|false|0|""],[squid_tmp_define="0"],
202 [AC_MSG_ERROR([SQUID_DEFINE[]_BOOL: unrecognized value for $1: '$2'])]
203)
9603207d 204ifelse([$#],3,
8075a4da
FC
205 [AC_DEFINE_UNQUOTED([$1], [$squid_tmp_define],[$3])],
206 [AC_DEFINE_UNQUOTED([$1], [$squid_tmp_define])]
207)
208unset squid_tmp_define
209])
1d87b6b3
FC
210
211dnl aborts with an error specified as the second argument if the first argument doesn't
212dnl contain either "yes" or "no"
213AC_DEFUN([SQUID_YESNO],[
ec308e40 214 AS_IF([test "$1" != "yes" -a "$1" != "no"],[AC_MSG_ERROR([Bad argument for $2: "$1". Expecting "yes", "no", or no argument.])])
1d87b6b3 215])
4fe75473 216
24531401
AJ
217dnl check the build parameters for a library to auto-enable
218dnl Parameters for this macro are:
219dnl 1) binary library name (without 'lib' prefix)
220dnl 2) name of the library for human reading
221dnl 3) prefix used for pkg-check macros
222AC_DEFUN([SQUID_AUTO_LIB],[
24531401
AJ
223 AC_ARG_WITH([$1],AS_HELP_STRING([--without-$1],[Compile without the $2 library.]),[
224 AS_CASE(["$withval"],[yes|no],,[
225 AS_IF([test ! -d "$withval"],AC_MSG_ERROR([--with-$1 path does not point to a directory]))
8780c450
AJ
226 m4_translit([with_$1], [-+.], [___])=yes
227 AS_IF([test -d "$withval/lib64"],[$3_PATH+="-L$withval/lib64"])
228 AS_IF([test -d "$withval/lib"],[$3_PATH+="-L$withval/lib"])
229 AS_IF([test -d "$withval/include"],[$3_CFLAGS+="-I$withval/include"])
24531401
AJ
230 ])
231 ])
24531401
AJ
232])
233dnl same as SQUID_AUTO_LIB but for default-disabled libraries
234AC_DEFUN([SQUID_OPTIONAL_LIB],[
24531401 235 AC_ARG_WITH([$1],AS_HELP_STRING([--with-$1],[Compile with the $2 library.]),[
8780c450
AJ
236 AS_CASE(["$withval"],[yes|no],,[
237 AS_IF([test ! -d "$withval"],AC_MSG_ERROR([--with-$1 path does not point to a directory]))
238 m4_translit([with_$1], [-+.], [___])=yes
239 AS_IF([test -d "$withval/lib64"],[$3_PATH+="-L$withval/lib64"])
240 AS_IF([test -d "$withval/lib"],[$3_PATH+="-L$withval/lib"])
241 AS_IF([test -d "$withval/include"],[$3_CFLAGS+="-I$withval/include"])
24531401
AJ
242 ])
243 ])
8780c450 244 AS_IF([test "x$withval" = "x"],[m4_translit([with_$1], [-+.], [___])=no])
24531401
AJ
245])
246
4fe75473
FC
247AC_DEFUN([SQUID_EMBED_BUILD_INFO],[
248 AC_ARG_ENABLE([build-info],
249 AS_HELP_STRING([--enable-build-info="build info string"],
b9c250bf 250 [Add an additional string in the output of "squid -v".
4fe75473 251 Default is not to add anything. If the string is not specified,
9603207d 252 tries to determine nick and revision number of the current
4fe75473 253 bazaar branch]),[
a1c22363
AJ
254 AS_CASE(["$enableval"],
255 [no],[:],
256 [yes],[
257 AS_IF([test -d "${srcdir}/.bzr"],[
258 AC_PATH_PROG(BZR,bzr,$FALSE)
259 squid_bzr_branch_nick=`cd ${srcdir} && ${BZR} nick 2>/dev/null`
260 AS_IF([test $? -eq 0 -a "x$squid_bzr_branch_nick" != "x"],[
261 squid_bzr_branch_revno=`cd ${srcdir} && ${BZR} revno 2>/dev/null | sed 's/\"//g'`
262 ])
263 AS_IF([test $? -eq 0 -a "x$squid_bzr_branch_revno" != "x"],[
264 sh -c "cd ${srcdir} && ${BZR} diff 2>&1 >/dev/null"
265 AS_IF([test $? -eq 1],[
4fe75473 266 squid_bzr_branch_revno="$squid_bzr_branch_revno+changes"
a1c22363
AJ
267 ])
268 ])
269 AS_IF([test "x$squid_bzr_branch_revno" != "x"],[
270 squid_build_info="Built branch: ${squid_bzr_branch_nick}-r${squid_bzr_branch_revno}"
271 ])
272 ])
273 ],
274 [squid_build_info=$enableval]
275 )
4fe75473 276 ])
90cf433e
FC
277 AC_DEFINE_UNQUOTED([SQUID_BUILD_INFO],["$squid_build_info"],
278 [Squid extended build info field for "squid -v" output])
4fe75473 279])
391f0bac
FC
280
281dnl like AC_SEARCH_LIBS, with an extra argument which is
282dnl a prefix to the test program
283AC_DEFUN([SQUID_SEARCH_LIBS],
284[AS_VAR_PUSHDEF([ac_Search], [ac_cv_search_$1])dnl
285AC_CACHE_CHECK([for library containing $1], [ac_Search],
286[ac_func_search_save_LIBS=$LIBS
287AC_LANG_CONFTEST([AC_LANG_PROGRAM([$6], [$1()])])
288for ac_lib in '' $2; do
a1c22363 289 AS_IF([test -z "$ac_lib"],[
391f0bac 290 ac_res="none required"
a1c22363 291 ],[
391f0bac
FC
292 ac_res=-l$ac_lib
293 LIBS="-l$ac_lib $5 $ac_func_search_save_LIBS"
a1c22363 294 ])
3aa7893f 295 AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [AS_VAR_SET([ac_Search], [$ac_res])])
391f0bac
FC
296 AS_VAR_SET_IF([ac_Search], [break])
297done
298AS_VAR_SET_IF([ac_Search], , [AS_VAR_SET([ac_Search], [no])])
299rm conftest.$ac_ext
300LIBS=$ac_func_search_save_LIBS])
301ac_res=AS_VAR_GET([ac_Search])
a1c22363
AJ
302AS_IF([test "$ac_res" != no],[
303 AS_IF([test "$ac_res" != "none required"],[LIBS="$ac_res $LIBS"])
304 $3],[$4])
391f0bac
FC
305AS_VAR_POPDEF([ac_Search])dnl
306])
5a0c5a92
AJ
307
308dnl Check for Cyrus SASL
309AC_DEFUN([SQUID_CHECK_SASL],[
586fa897 310 squid_cv_check_sasl="auto"
deca8463 311 AC_CHECK_HEADERS([sasl/sasl.h sasl.h])
5a0c5a92
AJ
312 AC_CHECK_LIB(sasl2,sasl_errstring,[LIBSASL="-lsasl2"],[
313 AC_CHECK_LIB(sasl,sasl_errstring,[LIBSASL="-lsasl"], [
586fa897 314 squid_cv_check_sasl="no"
5a0c5a92
AJ
315 ])
316 ])
a1c22363
AJ
317 AS_IF([test "$squid_host_os" = "Darwin"],[
318 AS_IF([test "$ac_cv_lib_sasl2_sasl_errstring" = "yes"],[
319 AC_DEFINE(HAVE_SASL_DARWIN,1,[Define to 1 if Mac Darwin without sasl.h])
320 echo "checking for MAC Darwin without sasl.h ... yes"
321 squid_cv_check_sasl="yes"
322 ],[
323 echo "checking for MAC Darwin without sasl.h ... no"
324 squid_cv_check_sasl="no"
325 ])
326 ])
327 AS_IF([test "x$squid_cv_check_sasl" = "xno"],[
deca8463 328 AC_MSG_WARN([Neither SASL nor SASL2 found])
a1c22363 329 ],[
586fa897 330 squid_cv_check_sasl="yes"
a1c22363 331 ])
5a0c5a92
AJ
332 AC_SUBST(LIBSASL)
333])