]> git.ipfire.org Git - thirdparty/squid.git/blame - acinclude/squid-util.m4
Merged from trunk
[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}"
40$1_squid_saved_vars="$2"
41for squid_util_var_tosave in $2
42do
43 squid_util_var_tosave2="$1_${squid_util_var_tosave}"
44 eval "${squid_util_var_tosave2}=\"${squid_util_var_tosave}\""
45done
46])
47
48dnl commit the state changes: deleting the temporary state defined in SQUID_STATE_SAVE
49dnl with the same prefix. It's not necessary to specify the extra variables passed
50dnl to SQUID_STATE_SAVE again, they will be automatically reclaimed.
51AC_DEFUN([SQUID_STATE_COMMIT],[
52unset $1_CFLAGS
53unset $1_$CXXFLAGS
54unset $1_LDFLAGS
55unset $1_LIBS
56for squid_util_var_tosave in $$1_squid_saved_vars
57do
58 unset ${squid_util_var_tosave2}
59done
60])
61
62dnl rollback state to the call of SQUID_STATE_SAVE with the same namespace argument.
63dnl all temporary state will be cleared, including the custom variables specified
64dnl at call time. It's not necessary to explicitly name them, they will be automatically
65dnl cleared.
66AC_DEFUN([SQUID_STATE_ROLLBACK],[
67CFLAGS="${$1_CFLAGS}"
68CXXFLAGS="${$1_CXXFLAGS}"
69LDFLAGS="${$1_LDFLAGS}"
70LIBS="${$1_LIBS}"
71for squid_util_var_tosave in $$1_squid_saved_vars
72do
73 squid_util_var_tosave2="$1_${squid_util_var_tosave}"
74 eval "${squid_util_var_tosave}=\$${squid_util_var_tosave2}"
75done
76SQUID_STATE_COMMIT($1)
77])
78