1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
dnl Process this file with autoconf to produce a configure script.
AC_INIT(ssmtp.c)
dnl Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LN_S
dnl Checks for libraries.
dnl Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS(limits.h strings.h syslog.h unistd.h)
AC_CACHE_CHECK([for obsolete openlog],ssmtp_cv_obsolete_openlog,
[ AC_TRY_COMPILE([#include <syslog.h> ] , [ openlog("xx",1); ] ,
ssmtp_cv_obsolete_openlog=yes, ssmtp_cv_obsolete_openlog=no)]
)
dnl Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_STRUCT_TM
dnl Checks for libraries.
AC_SEARCH_LIBS(gethostname, nsl)
AC_SEARCH_LIBS(socket, socket)
dnl Checks for library functions.
AC_TYPE_SIGNAL
AC_FUNC_VPRINTF
AC_CHECK_FUNCS(gethostname socket strdup strstr)
dnl Check for optional features
AC_ARG_ENABLE(logfile,
[ --enable-logfile additional logging over and above syslog])
if test x$enableval = xyes ; then
AC_DEFINE(LOGFILE)
fi
enableval=""
AC_ARG_ENABLE(rewrite-domain,
[ --disable-rewrite-domain
support for rewriting the sending domain])
if test x$enableval != xno ; then
AC_DEFINE(REWRITE_DOMAIN)
fi
enableval=""
AC_ARG_ENABLE(ssl,
[ --enable-ssl support for secure connection to mail server])
if test x$enableval = xyes ; then
AC_DEFINE(HAVE_SSL)
LIBS="$LIBS -lgnutls-openssl"
fi
enableval=""
AC_ARG_ENABLE(inet6,
[ --enable-inet6 support for IPv6 transport])
if test x$enableval = xyes ; then
AC_DEFINE(INET6)
fi
enableval=""
AC_ARG_ENABLE(md5auth,
[ --enable-md5auth support for MD5 authentication])
if test x$enableval = xyes ; then
AC_DEFINE(MD5AUTH)
SRCS="$SRCS md5auth/md5c.c md5auth/hmac_md5.c"
fi
enableval=""
AC_SUBST(SRCS)
AC_OUTPUT(Makefile)
|