2001-06-05 07:33:11 +08:00
|
|
|
dnl $Id: configure.in,v 1.11 2001-06-04 23:33:11 rjkaes Exp $
|
2000-09-12 08:18:17 +08:00
|
|
|
|
2000-02-17 01:32:49 +08:00
|
|
|
AC_INIT()
|
2001-06-05 07:33:11 +08:00
|
|
|
AM_INIT_AUTOMAKE(tinyproxy,1.4.0pre6)
|
2000-09-12 08:18:17 +08:00
|
|
|
AM_CONFIG_HEADER(config.h)
|
2000-02-17 01:32:49 +08:00
|
|
|
|
2000-09-12 08:18:17 +08:00
|
|
|
AC_CANONICAL_HOST
|
|
|
|
AC_CANONICAL_TARGET
|
2000-02-17 01:32:49 +08:00
|
|
|
|
|
|
|
dnl Checks for programs.
|
2001-06-03 01:23:16 +08:00
|
|
|
AC_PROG_AWK
|
2000-09-12 08:18:17 +08:00
|
|
|
AC_PROG_MAKE_SET
|
2000-02-17 01:32:49 +08:00
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_INSTALL
|
2001-06-03 01:23:16 +08:00
|
|
|
AC_PROG_LN_S
|
2000-09-12 08:18:17 +08:00
|
|
|
AC_PROG_YACC
|
2001-06-03 01:23:16 +08:00
|
|
|
if test "$YACC" != "bison -y"; then
|
|
|
|
AC_MSG_WARN(You will need bison if you want to regenerate the parser.)
|
|
|
|
else
|
|
|
|
AC_MSG_CHECKING(bison version)
|
|
|
|
oldIFS=$IFS; IFS=.
|
|
|
|
set `bison -V | sed -e 's/^GNU Bison version //'`
|
|
|
|
IFS=$oldIFS
|
|
|
|
if test "$1" = "1" -a "$2" -lt "25"; then
|
|
|
|
AC_MSG_WARN(Bison 1.25 or newer needed to regenerate parsers (found $1.$2).)
|
|
|
|
fi
|
|
|
|
AC_MSG_RESULT($1.$2 (ok))
|
|
|
|
fi
|
|
|
|
|
|
|
|
AM_PROG_LEX
|
2000-09-12 08:18:17 +08:00
|
|
|
AM_C_PROTOTYPES
|
2000-02-17 01:32:49 +08:00
|
|
|
|
|
|
|
dnl Checks for header files.
|
|
|
|
AC_HEADER_STDC
|
2001-06-03 01:23:16 +08:00
|
|
|
AC_CHECK_HEADERS(\
|
|
|
|
sys/types.h \
|
|
|
|
sys/ioctl.h \
|
|
|
|
sys/resource.h \
|
|
|
|
sys/select.h \
|
|
|
|
sys/socket.h \
|
|
|
|
sys/stat.h \
|
|
|
|
sys/sysctl.h \
|
|
|
|
sys/time.h \
|
|
|
|
sys/uio.h \
|
|
|
|
sys/un.h \
|
|
|
|
sys/wait.h \
|
|
|
|
arpa/inet.h \
|
|
|
|
netinet/in.h \
|
|
|
|
alloca.h \
|
|
|
|
assert.h \
|
|
|
|
ctype.h \
|
|
|
|
errno.h \
|
|
|
|
fcntl.h \
|
|
|
|
grp.h \
|
|
|
|
io.h \
|
|
|
|
libintl.h \
|
|
|
|
malloc.h \
|
|
|
|
netdb.h \
|
|
|
|
pthread.h \
|
|
|
|
pwd.h \
|
|
|
|
regex.h \
|
|
|
|
signal.h \
|
|
|
|
stdarg.h \
|
|
|
|
stddef.h \
|
|
|
|
stdint.h \
|
|
|
|
stdio.h \
|
|
|
|
stdlib.h \
|
|
|
|
string.h \
|
|
|
|
strings.h \
|
|
|
|
sysexists.h \
|
|
|
|
syslog.h \
|
|
|
|
time.h \
|
|
|
|
unistd.h \
|
|
|
|
wchar.h \
|
|
|
|
wctype.h \
|
|
|
|
)
|
2000-02-17 01:32:49 +08:00
|
|
|
|
|
|
|
dnl Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
AC_C_CONST
|
|
|
|
AC_C_INLINE
|
2000-09-12 08:18:17 +08:00
|
|
|
AC_HEADER_TIME
|
|
|
|
AC_UNP_CHECK_TYPE(uint8_t, unsigned char)
|
|
|
|
AC_UNP_CHECK_TYPE(int16_t, short)
|
|
|
|
AC_UNP_CHECK_TYPE(uint16_t, unsigned short)
|
|
|
|
AC_UNP_CHECK_TYPE(int32_t, int)
|
|
|
|
AC_UNP_CHECK_TYPE(uint32_t, unsigned int)
|
|
|
|
AC_UNP_CHECK_TYPE(size_t, unsigned int)
|
|
|
|
AC_UNP_CHECK_TYPE(ssize_t, int)
|
|
|
|
AC_UNP_CHECK_TYPE(socklen_t, unsigned int)
|
|
|
|
AC_UNP_CHECK_TYPE(in_addr_t, uint32_t)
|
|
|
|
|
|
|
|
dnl Checks for libraries
|
|
|
|
AC_CHECK_LIB(pthread, pthread_create)
|
2001-06-03 01:23:16 +08:00
|
|
|
if test "$ac_cv_lib_pthread_pthread_create" = "yes"; then
|
2000-09-12 08:18:17 +08:00
|
|
|
CFLAGS="$CFLAGS -D_REENTRANT"
|
|
|
|
else
|
|
|
|
AC_CHECK_LIB(pthreads, pthread_create)
|
2001-06-03 01:23:16 +08:00
|
|
|
if test "$ac_cv_lib_pthreads_pthread_create" = "yes"; then
|
2000-09-12 08:18:17 +08:00
|
|
|
CFLAGS="$CFLAGS -D_REENTRANT"
|
|
|
|
else
|
|
|
|
AC_MSG_ERROR(You must have a POSIX compliant threading library installed)
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2001-06-03 01:23:16 +08:00
|
|
|
AC_CHECK_LIB(socket, socket, [ ], [ AC_CHECK_LIB(socket, htonl) ])
|
|
|
|
|
|
|
|
dnl Some systems (OpenServer 5) dislike -lsocket -lnsl, so we try to
|
|
|
|
dnl avoid -lnsl checks, if we already have the functions which are
|
|
|
|
dnl usually in libnsl
|
|
|
|
|
|
|
|
unset ac_cv_func_yp_get_default_domain
|
|
|
|
AC_CHECK_FUNC(yp_get_default_domain, [ tinyproxy_no_nsl_checks=yes ], [ ])
|
|
|
|
unset ac_cv_func_yp_get_default_domain
|
|
|
|
|
|
|
|
if test "$tinyproxy_no_nsl_checks" != "yes"; then
|
|
|
|
AC_CHECK_LIB(nsl, gethostname, [ ], [ AC_CHECK_LIB(nsl, gethostbyaddr) ])
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_CHECK_LIB(resolv, inet_aton)
|
2000-09-12 08:18:17 +08:00
|
|
|
|
|
|
|
dnl Checks for library functions.
|
2001-06-03 01:23:16 +08:00
|
|
|
AC_FUNC_ALLOCA
|
|
|
|
dnl AC_FUNC_MEMCMP
|
2000-09-12 08:18:17 +08:00
|
|
|
AC_TYPE_SIGNAL
|
|
|
|
AC_FUNC_STRFTIME
|
|
|
|
AC_FUNC_VPRINTF
|
2001-06-03 01:23:16 +08:00
|
|
|
AC_CHECK_FUNCS(\
|
|
|
|
ftruncate \
|
|
|
|
select \
|
|
|
|
setrlimit \
|
|
|
|
socket \
|
|
|
|
strdup \
|
|
|
|
strerror \
|
|
|
|
strtol \
|
|
|
|
vsnprintf \
|
|
|
|
vsyslog \
|
|
|
|
)
|
2000-09-12 08:18:17 +08:00
|
|
|
AC_CHECK_FUNCS(strlcpy strlcat)
|
2000-02-17 01:32:49 +08:00
|
|
|
|
2000-09-12 08:18:17 +08:00
|
|
|
AC_ARG_WITH(stathost, [ --with-stathost=HOST Default status host],
|
|
|
|
AC_DEFINE_UNQUOTED(DEFAULT_STATHOST, "$withval"))
|
2000-02-17 01:32:49 +08:00
|
|
|
|
2001-06-05 07:33:11 +08:00
|
|
|
dnl Set the default configuration file location
|
|
|
|
AC_ARG_WITH(config,
|
|
|
|
[ --with-config=FILE Set the default location of the config file],
|
|
|
|
AC_DEFINE_UNQUOTED(DEFAULT_CONF_FILE, "$withval"))
|
|
|
|
|
2000-03-12 04:35:52 +08:00
|
|
|
dnl Check for the regex library
|
2000-09-12 08:18:17 +08:00
|
|
|
AC_ARG_WITH(regex, [ --with-regex Use the GNU regex libary],
|
|
|
|
tinyproxy_cv_regex=yes,
|
|
|
|
AC_CHECK_FUNCS(regcomp, tinyproxy_cv_regex=no, tinyproxy_cv_regex=yes))
|
2000-03-12 04:35:52 +08:00
|
|
|
|
2001-06-03 01:23:16 +08:00
|
|
|
if test "$tinyproxy_cv_regex" != "yes" ; then
|
2000-09-12 08:18:17 +08:00
|
|
|
AC_MSG_CHECKING(whether your system's regexp library is completely broken)
|
|
|
|
AC_CACHE_VAL(tinyproxy_cv_regex_broken,
|
|
|
|
AC_TRY_RUN([
|
|
|
|
# include <unistd.h>
|
|
|
|
# include <regex.h>
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
regex_t blah;
|
|
|
|
return regcomp(&blah, "foo.*bar", REG_NOSUB) || regexec(&blah, "foobar", 0, NULL, 0);
|
|
|
|
}
|
|
|
|
],
|
|
|
|
tinyproxy_cv_regex_broken=no,
|
|
|
|
tinyproxy_cv_regex_broken=yes,
|
|
|
|
tinyproxy_cv_regex_broken=yes))
|
|
|
|
|
|
|
|
AC_MSG_RESULT($tinyproxy_cv_regex_broken)
|
2001-06-03 01:23:16 +08:00
|
|
|
if test "$tinyproxy_cv_regex_broken" = "yes" ; then
|
2000-09-12 08:18:17 +08:00
|
|
|
echo "Using the included GNU regex instead." >&AC_FD_MSG
|
|
|
|
tinyproxy_cv_regex=yes
|
|
|
|
fi
|
2000-03-12 04:35:52 +08:00
|
|
|
fi
|
|
|
|
|
2001-06-03 01:23:16 +08:00
|
|
|
if test "$tinyproxy_cv_regex" = "yes" ; then
|
2000-09-12 08:18:17 +08:00
|
|
|
AC_DEFINE(USE_GNU_REGEX)
|
|
|
|
LIBOBJS="$LIBOBJS gnuregex.o"
|
2000-03-12 04:35:52 +08:00
|
|
|
fi
|
|
|
|
|
2000-09-12 08:18:17 +08:00
|
|
|
dnl Add compiler-specific optimization flags
|
|
|
|
AC_ARG_ENABLE(debug,
|
|
|
|
[ --enable-debug Disable aggressive optimizations [default=no]],
|
|
|
|
debug_enabled=yes)
|
|
|
|
|
|
|
|
CFLAGS="$CFLAGS -Wall"
|
2001-06-03 01:23:16 +08:00
|
|
|
if test "$enable_debug" = "yes" ; then
|
2000-09-12 08:18:17 +08:00
|
|
|
dnl Add the warnings if we have the GCC compiler
|
|
|
|
if test x$ac_cv_prog_gcc = xyes ; then
|
|
|
|
CFLAGS="$CFLAGS -Wshadow"
|
|
|
|
CFLAGS="$CFLAGS -Wcast-qual"
|
|
|
|
CFLAGS="$CFLAGS -Wcast-align"
|
|
|
|
CFLAGS="$CFLAGS -Wstrict-prototypes"
|
|
|
|
CFLAGS="$CFLAGS -Wmissing-prototypes"
|
|
|
|
CFLAGS="$CFLAGS -Wmissing-declarations"
|
|
|
|
CFLAGS="$CFLAGS -Wpointer-arith"
|
|
|
|
CFLAGS="$CFLAGS -Waggregate-return"
|
|
|
|
CFLAGS="$CFLAGS -Wnested-externs"
|
|
|
|
fi
|
|
|
|
CFLAGS="$CFLAGS -DYYDEBUG"
|
|
|
|
YFLAGS="-v -d"
|
|
|
|
else
|
|
|
|
dnl No debugging information, include the optimizations
|
|
|
|
YFLAGS="-d"
|
2000-02-17 01:32:49 +08:00
|
|
|
fi
|
|
|
|
|
2000-03-12 04:35:52 +08:00
|
|
|
dnl Check for SOCKS support
|
2000-09-12 08:18:17 +08:00
|
|
|
AC_ARG_ENABLE(socks,
|
|
|
|
[ --enable-socks Enable SOCKS support [default=no]],
|
2001-06-05 07:33:11 +08:00
|
|
|
socks_enabled=yes, socks_enabled=no)
|
2000-09-12 08:18:17 +08:00
|
|
|
|
2001-06-03 01:23:16 +08:00
|
|
|
if test "$socks_enabled" = "yes"; then
|
2000-09-12 08:18:17 +08:00
|
|
|
AC_CHECK_HEADER(socks.h, socks_header=yes, socks_header=no)
|
|
|
|
AC_CHECK_LIB(socks, main, socks_library=yes, socks_library=no)
|
2001-06-03 01:23:16 +08:00
|
|
|
if test "$socks_header" = "yes" -a "$socks_library" = "yes"; then
|
2000-09-12 08:18:17 +08:00
|
|
|
CFLAGS="$CFLAGS -I/usr/include/sock.h -DSOCKS"
|
|
|
|
LIBS="$LIBS -lsocks"
|
|
|
|
else
|
|
|
|
AC_MSG_ERROR(could not find the SOCKS library or header)
|
|
|
|
fi
|
2000-02-17 01:32:49 +08:00
|
|
|
fi
|
|
|
|
|
2000-03-12 04:35:52 +08:00
|
|
|
dnl Check to see if the XTinyproxy header is to be included
|
2000-09-12 08:18:17 +08:00
|
|
|
AC_ARG_ENABLE(xtinyproxy,
|
|
|
|
[ --enable-xtinyproxy Include X-Tinyproxy header [default=yes]],
|
2001-06-05 07:33:11 +08:00
|
|
|
xtinyproxy_enabled=yes, xtinyproxy_enabled=yes)
|
2000-09-12 08:18:17 +08:00
|
|
|
|
2001-06-05 07:33:11 +08:00
|
|
|
if test "$xtinyproxy_enabled" = "yes"; then
|
2000-09-12 08:18:17 +08:00
|
|
|
AC_DEFINE(XTINYPROXY_ENABLE)
|
2000-02-17 01:32:49 +08:00
|
|
|
fi
|
|
|
|
|
2000-03-12 04:35:52 +08:00
|
|
|
dnl Include filtering for domain/URLs
|
2000-09-12 08:18:17 +08:00
|
|
|
AC_ARG_ENABLE(filter,
|
|
|
|
[ --enable-filter Enable filtering of domains/URLs [default=yes]],
|
2001-06-05 07:33:11 +08:00
|
|
|
filter_enabled=yes, filter_enabled=yes)
|
2000-09-12 08:18:17 +08:00
|
|
|
|
2001-06-05 07:33:11 +08:00
|
|
|
if test "$filter_enabled" = "yes"; then
|
2000-09-12 08:18:17 +08:00
|
|
|
LIBOBJS="$LIBOBJS filter.o"
|
|
|
|
AC_DEFINE(FILTER_ENABLE)
|
2000-02-17 01:32:49 +08:00
|
|
|
fi
|
|
|
|
|
2000-09-12 08:18:17 +08:00
|
|
|
dnl Include support for upstream proxies? (TCP tunneling)
|
|
|
|
AC_ARG_ENABLE(tunnel,
|
|
|
|
[ --enable-tunnel Enable support for TCP tunneling [default=yes]],
|
2001-06-05 07:33:11 +08:00
|
|
|
tunnel_enabled=yes, tunnel_enabled=yes)
|
2000-09-12 08:18:17 +08:00
|
|
|
|
2001-06-03 01:23:16 +08:00
|
|
|
if test "$tunnel_enabled" = "yes" ; then
|
2000-09-12 08:18:17 +08:00
|
|
|
AC_DEFINE(TUNNEL_SUPPORT)
|
|
|
|
fi
|
2000-02-17 01:32:49 +08:00
|
|
|
|
2000-09-12 08:18:17 +08:00
|
|
|
dnl Substitute the variables into the various Makefiles
|
|
|
|
AC_SUBST(CFLAGS)
|
|
|
|
AC_SUBST(YFLAGS)
|
|
|
|
AC_SUBST(CPPFLAGS)
|
|
|
|
AC_SUBST(LIBS)
|
|
|
|
AC_SUBST(LIBOBJS)
|
|
|
|
|
2001-06-05 07:33:11 +08:00
|
|
|
AC_OUTPUT(Makefile src/Makefile doc/Makefile)
|