]> git.ipfire.org Git - thirdparty/squid.git/blame_incremental - acinclude/squid-util.m4
Source Format Enforcement (#532)
[thirdparty/squid.git] / acinclude / squid-util.m4
... / ...
CommitLineData
1## Copyright (C) 1996-2020 The Squid Software Foundation and contributors
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##
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],[
15# save state, key is $1
16$1_CFLAGS="${CFLAGS}"
17$1_CXXFLAGS="${CXXFLAGS}"
18$1_LDFLAGS="${LDFLAGS}"
19$1_LIBS="${LIBS}"
20$1_CC="${CC}"
21$1_CXX="${CXX}"
22$1_CPPFLAGS="${CPPFLAGS}"
23$1_squid_saved_vars="$2"
24for squid_util_var_tosave in $$1_squid_saved_vars
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],[
35# commit state, key is $1
36unset $1_CFLAGS
37unset $1_CXXFLAGS
38unset $1_LDFLAGS
39unset $1_LIBS
40unset $1_CC
41unset $1_CXX
42unset $1_CPPFLAGS
43for squid_util_var_tosave in $$1_squid_saved_vars
44do
45 unset ${squid_util_var_tosave}
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],[
54# rollback state, key is $1
55CFLAGS="${$1_CFLAGS}"
56CXXFLAGS="${$1_CXXFLAGS}"
57LDFLAGS="${$1_LDFLAGS}"
58LIBS="${$1_LIBS}"
59CC="${$1_CC}"
60CXX="${$1_CXX}"
61CPPFLAGS="${$1_CPPFLAGS}"
62for squid_util_var_tosave in $$1_squid_saved_vars
63do
64 squid_util_var_tosave2="\$$1_${squid_util_var_tosave}"
65 eval "$squid_util_var_tosave=\"${squid_util_var_tosave2}\""
66done
67SQUID_STATE_COMMIT($1)
68])
69
70
71dnl look for modules in the base-directory supplied as argument.
72dnl fill-in the variable pointed-to by the second argument with the
73dnl space-separated list of modules
74AC_DEFUN([SQUID_LOOK_FOR_MODULES],[
75$2=""
76for dir in $1/*; do
77 module="`basename $dir`"
78 if test -d "$dir" && test "$module" != CVS; then
79 $2="$$2 $module"
80 fi
81done
82])
83
84dnl remove duplicates out of a list.
85dnl argument is the name of a variable to be checked and cleaned up
86AC_DEFUN([SQUID_CLEANUP_MODULES_LIST],[
87squid_cleanup_tmp_outlist=""
88for squid_cleanup_tmp in $$1
89do
90 squid_cleanup_tmp_dupe=0
91 for squid_cleanup_tmp2 in $squid_cleanup_tmp_outlist
92 do
93 if test "$squid_cleanup_tmp" = "$squid_cleanup_tmp2"; then
94 squid_cleanup_tmp_dupe=1
95 break
96 fi
97 done
98 if test $squid_cleanup_tmp_dupe -eq 0; then
99 squid_cleanup_tmp_outlist="${squid_cleanup_tmp_outlist} $squid_cleanup_tmp"
100 fi
101done
102$1=$squid_cleanup_tmp_outlist
103unset squid_cleanup_tmp_outlist
104unset squid_cleanup_tmp_dupe
105unset squid_cleanup_tmp2
106unset squid_cleanup_tmp
107])
108
109dnl check that all the modules supplied as a whitespace-separated list (second
110dnl argument) exist as members of the basedir passed as first argument
111dnl call AC_MESG_ERROR if any module does not exist. Also sets individual variables
112dnl named $2_modulename to value "yes"
113dnl e.g. SQUID_CHECK_EXISTING_MODULES([$srcdir/src/fs],[foo_module_candidates])
114dnl where $foo_module_candidates is "foo bar gazonk"
115dnl checks whether $srcdir/src/fs/{foo,bar,gazonk} exist and are all dirs
116dnl AND sets $foo_module_candidates_foo, $foo_module_candidates_bar
117dnl and $foo_module_candidates_gazonk to "yes"
118AC_DEFUN([SQUID_CHECK_EXISTING_MODULES],[
119 for squid_module_check_exist_tmp in $$2
120 do
121 if test -d $1/$squid_module_check_exist_tmp
122 then
123 eval "$2_$squid_module_check_exist_tmp='yes'"
124 #echo "defining $2_$squid_module_check_exist_tmp"
125 else
126 AC_MSG_ERROR([$squid_module_check_exist_tmp not found in $1])
127 fi
128 done
129])
130
131dnl lowercases the contents of the variable whose name is passed by argument
132AC_DEFUN([SQUID_TOLOWER_VAR_CONTENTS],[
133 $1=`echo $$1|tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`
134])
135
136dnl uppercases the contents of the variable whose name is passed by argument
137AC_DEFUN([SQUID_TOUPPER_VAR_CONTENTS],[
138 $1=`echo $$1|tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ`
139])
140
141dnl like AC_DEFINE, but it defines the value to 0 or 1 using well-known textual
142dnl conventions:
143dnl 1: "yes", "true", 1
144dnl 0: "no" , "false", 0, ""
145dnl aborts with an error for unknown values
146AC_DEFUN([SQUID_DEFINE_BOOL],[
147squid_tmp_define=""
148case "$2" in
149 yes|true|1) squid_tmp_define="1" ;;
150 no|false|0|"") squid_tmp_define="0" ;;
151 *) AC_MSG_ERROR([SQUID_DEFINE[]_BOOL: unrecognized value for $1: '$2']) ;;
152esac
153ifelse([$#],3,
154 [AC_DEFINE_UNQUOTED([$1], [$squid_tmp_define],[$3])],
155 [AC_DEFINE_UNQUOTED([$1], [$squid_tmp_define])]
156)
157unset squid_tmp_define
158])
159
160dnl aborts with an error specified as the second argument if the first argument doesn't
161dnl contain either "yes" or "no"
162AC_DEFUN([SQUID_YESNO],[
163if test "$1" != "yes" -a "$1" != "no" ; then
164 AC_MSG_ERROR([$2])
165fi
166])
167
168AC_DEFUN([SQUID_EMBED_BUILD_INFO],[
169 AC_ARG_ENABLE([build-info],
170 AS_HELP_STRING([--enable-build-info="build info string"],
171 [Add an additional string in the output of "squid -v".
172 Default is not to add anything. If the string is not specified,
173 tries to determine nick and revision number of the current
174 bazaar branch]),[
175 case "$enableval" in
176 no) ${TRUE}
177 ;;
178 yes)
179 if test -d "${srcdir}/.bzr"; then
180 AC_PATH_PROG(BZR,bzr,$FALSE)
181 squid_bzr_branch_nick=`cd ${srcdir} && ${BZR} nick 2>/dev/null`
182 if test $? -eq 0 -a "x$squid_bzr_branch_nick" != "x"; then
183 squid_bzr_branch_revno=`cd ${srcdir} && ${BZR} revno 2>/dev/null | sed 's/\"//g'`
184 fi
185 if test $? -eq 0 -a "x$squid_bzr_branch_revno" != "x"; then
186 sh -c "cd ${srcdir} && ${BZR} diff 2>&1 >/dev/null"
187 if test $? -eq 1; then
188 squid_bzr_branch_revno="$squid_bzr_branch_revno+changes"
189 fi
190 fi
191 if test "x$squid_bzr_branch_revno" != "x"; then
192 squid_build_info="Built branch: ${squid_bzr_branch_nick}-r${squid_bzr_branch_revno}"
193 fi
194 fi
195 ;;
196 *)
197 squid_build_info=$enableval
198 ;;
199 esac
200 ])
201 AC_DEFINE_UNQUOTED([SQUID_BUILD_INFO],["$squid_build_info"],
202 [Squid extended build info field for "squid -v" output])
203])
204
205dnl like AC_SEARCH_LIBS, with an extra argument which is
206dnl a prefix to the test program
207AC_DEFUN([SQUID_SEARCH_LIBS],
208[AS_VAR_PUSHDEF([ac_Search], [ac_cv_search_$1])dnl
209AC_CACHE_CHECK([for library containing $1], [ac_Search],
210[ac_func_search_save_LIBS=$LIBS
211AC_LANG_CONFTEST([AC_LANG_PROGRAM([$6], [$1()])])
212for ac_lib in '' $2; do
213 if test -z "$ac_lib"; then
214 ac_res="none required"
215 else
216 ac_res=-l$ac_lib
217 LIBS="-l$ac_lib $5 $ac_func_search_save_LIBS"
218 fi
219 AC_LINK_IFELSE([], [AS_VAR_SET([ac_Search], [$ac_res])])
220 AS_VAR_SET_IF([ac_Search], [break])
221done
222AS_VAR_SET_IF([ac_Search], , [AS_VAR_SET([ac_Search], [no])])
223rm conftest.$ac_ext
224LIBS=$ac_func_search_save_LIBS])
225ac_res=AS_VAR_GET([ac_Search])
226AS_IF([test "$ac_res" != no],
227 [test "$ac_res" = "none required" || LIBS="$ac_res $LIBS"
228 $3],
229 [$4])
230AS_VAR_POPDEF([ac_Search])dnl
231])
232
233dnl Check for Cyrus SASL
234AC_DEFUN([SQUID_CHECK_SASL],[
235 squid_cv_check_sasl="auto"
236 AC_CHECK_HEADERS([sasl/sasl.h sasl.h])
237 AC_CHECK_LIB(sasl2,sasl_errstring,[LIBSASL="-lsasl2"],[
238 AC_CHECK_LIB(sasl,sasl_errstring,[LIBSASL="-lsasl"], [
239 squid_cv_check_sasl="no"
240 ])
241 ])
242 case "$squid_host_os" in
243 Darwin)
244 if test "$ac_cv_lib_sasl2_sasl_errstring" = "yes" ; then
245 AC_DEFINE(HAVE_SASL_DARWIN,1,[Define to 1 if Mac Darwin without sasl.h])
246 echo "checking for MAC Darwin without sasl.h ... yes"
247 squid_cv_check_sasl="yes"
248 else
249 echo "checking for MAC Darwin without sasl.h ... no"
250 squid_cv_check_sasl="no"
251 fi
252 ;;
253 esac
254 if test "x$squid_cv_check_sasl" = "xno"; then
255 AC_MSG_WARN([Neither SASL nor SASL2 found])
256 else
257 squid_cv_check_sasl="yes"
258 fi
259 AC_SUBST(LIBSASL)
260])