echoping/SRC/configure.in

94 lines
1.9 KiB
Plaintext
Raw Normal View History

2000-04-17 11:36:29 +00:00
dnl $Id$
dnl Process this file with autoconf to produce a configure script.
AC_INIT(echoping.h)
2000-09-27 05:38:29 +00:00
AM_INIT_AUTOMAKE(echoping, 3.1.0-BETA)
2000-04-17 11:36:29 +00:00
AM_CONFIG_HEADER(config.h)
dnl User options
AC_ARG_ENABLE(http,
[--enable-http HTTP (Web's main protocol) support],dnl
[if test "$enableval" = "yes"; then
AC_DEFINE(HTTP)
HTTP=1
fi],
dnl Default: enable it
[AC_DEFINE(HTTP)
HTTP=1])
AC_ARG_ENABLE(icp,
[--enable-icp ICP (for testing Web proxies/caches) support],dnl
[if test "$enableval" = "yes"; then
AC_DEFINE(ICP)
fi])
2000-09-27 05:38:29 +00:00
dnl User options
AC_ARG_ENABLE(smtp,
[--enable-smtp SMTP (Mail's main protocol) support],dnl
[if test "$enableval" = "yes"; then
AC_DEFINE(SMTP)
SMTP=1
fi],
dnl Default: enable it
[AC_DEFINE(SMTP)
SMTP=1])
2000-04-17 14:31:25 +00:00
dnl See T/TCP later
2000-04-17 11:36:29 +00:00
dnl Checks for programs.
AC_PROG_CC
if test "$GCC" = yes; then
CFLAGS="$CFLAGS -Wall"
fi
2000-04-17 11:36:29 +00:00
AC_PROG_INSTALL
dnl Checks for libraries.
dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(sys/time.h unistd.h)
CF_SYS_ERRLIST
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_HEADER_TIME
dnl Checks for library functions.
CF_LIB_SOCKET
CF_LIB_NSL
2000-04-17 11:36:29 +00:00
AC_TYPE_SIGNAL
AC_FUNC_VPRINTF
AC_CHECK_FUNCS(gettimeofday socket gethostbyname sigaction, , AC_MSG_ERROR(Missing mandatory function))
2000-04-17 11:36:29 +00:00
2000-04-17 14:31:25 +00:00
dnl T/TCP
AC_MSG_CHECKING([T/TCP])
AC_TRY_COMPILE(
2000-04-17 14:35:35 +00:00
[#include <sys/types.h>
#include <sys/socket.h>
],
2000-04-17 14:31:25 +00:00
[int foobar = MSG_EOF;],
2000-04-17 14:43:43 +00:00
[AC_DEFINE(TTCP)
ac_have_ttcp="yes"],
2000-04-17 14:31:25 +00:00
ac_have_ttcp=no)
AC_MSG_RESULT($ac_have_ttcp)
AC_ARG_ENABLE(ttcp,
[--enable-ttcp T/TCP (Transaction TCP) support],
[if test "$enableval" = "yes"; then
if test $ac_have_ttcp = "yes"; then
2000-04-17 14:43:43 +00:00
AC_DEFINE(HAVE_TTCP)
2000-04-17 14:31:25 +00:00
else
AC_MSG_WARN([No T/TCP support on this system, request ignored])
fi
fi],
dnl Default: enable it if supported
if test $ac_have_ttcp = "yes"; then
2000-04-17 14:43:43 +00:00
AC_DEFINE(HAVE_TTCP)
2000-04-17 14:31:25 +00:00
fi)
if test "$HTTP" = "1"; then
CF_CHECK_SERVICES
fi
2000-04-17 14:31:25 +00:00
2000-04-17 11:36:29 +00:00
AC_OUTPUT(Makefile)