emailrelay/acinclude.m4
Graeme Walker 6d9b04341c v1.9
2013-12-08 12:00:00 +00:00

844 lines
20 KiB
Plaintext

dnl Copyright (C) 2001-2013 Graeme Walker <graeme_walker@users.sourceforge.net>
dnl
dnl This program is free software: you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foundation, either version 3 of the License, or
dnl (at your option) any later version.
dnl
dnl This program is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
dnl GNU General Public License for more details.
dnl
dnl You should have received a copy of the GNU General Public License
dnl along with this program. If not, see <http://www.gnu.org/licenses/>.
dnl ===
dnl Copyright (C) 2001-2013 Graeme Walker <graeme_walker@users.sourceforge.net>
dnl
dnl This program is free software: you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foundation, either version 3 of the License, or
dnl (at your option) any later version.
dnl
dnl This program is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
dnl GNU General Public License for more details.
dnl
dnl You should have received a copy of the GNU General Public License
dnl along with this program. If not, see <http://www.gnu.org/licenses/>.
dnl ===
dnl aclocal-type-socketlen-t
dnl
dnl Defines HAVE_SOCKLEN_T.
dnl
AC_DEFUN([ACLOCAL_TYPE_SOCKLEN_T],
[AC_CACHE_CHECK([for socklen_t],[aclocal_cv_type_socklen_t],
[
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
[[#include <sys/types.h>
#include <sys/socket.h>]],
[[socklen_t len = 42; return len;]])],
aclocal_cv_type_socklen_t=yes,
aclocal_cv_type_socklen_t=no )
])
if test $aclocal_cv_type_socklen_t = yes; then
AC_DEFINE(HAVE_SOCKLEN_T,1,[Define to 1 if socklen_t type definition in sys/socket.h])
else
AC_DEFINE(HAVE_SOCKLEN_T,0,[Define to 1 if socklen_t type definition in sys/socket.h])
fi
])
dnl aclocal-check-ipv6
dnl
dnl Defines HAVE_IPV6.
dnl
AC_DEFUN([ACLOCAL_CHECK_IPV6],
[AC_CACHE_CHECK([for ipv6],[aclocal_cv_ipv6],
[
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
[[#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>]],
[[sockaddr_in6 * p = 0;]])],
aclocal_cv_ipv6=yes ,
aclocal_cv_ipv6=no )
])
if test $aclocal_cv_ipv6 = yes; then
AC_DEFINE(HAVE_IPV6,1,[Define to 1 if ipv6 is available])
else
AC_DEFINE(HAVE_IPV6,0,[Define to 1 if ipv6 is available])
fi
])
dnl aclocal-check-getipnodebyname
dnl
dnl Defines HAVE_GETIPNODEBYNAME if the ipv6 function
dnl getipnodebyname() as per rfc2553 is available.
dnl
AC_DEFUN([ACLOCAL_CHECK_GETIPNODEBYNAME],
[AC_CACHE_CHECK([for getipnodebyname],[aclocal_cv_getipnodebyname],
[
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
[[#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>]],
[[int i=0; getipnodebyname("",AF_INET6,AI_DEFAULT,&i);]])],
aclocal_cv_getipnodebyname=yes ,
aclocal_cv_getipnodebyname=no )
])
if test $aclocal_cv_getipnodebyname = yes; then
AC_DEFINE(HAVE_GETIPNODEBYNAME,1,[Define to 1 if getipnodebyname() is available])
else
AC_DEFINE(HAVE_GETIPNODEBYNAME,0,[Define to 1 if getipnodebyname() is available])
fi
])
dnl aclocal-check-sin6-len
dnl
dnl Defines HAVE_SIN6_LEN if sin6_len is in sockaddr_in6.
dnl
AC_DEFUN([ACLOCAL_CHECK_SIN6_LEN],
[AC_CACHE_CHECK([for sin6_len],[aclocal_cv_sin6_len],
[
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
[[#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>]],
[[struct sockaddr_in6 s; s.sin6_len = 1;]])],
aclocal_cv_sin6_len=yes ,
aclocal_cv_sin6_len=no )
])
if test $aclocal_cv_sin6_len = yes; then
AC_DEFINE(HAVE_SIN6_LEN,1,[Define to 1 if sockaddr_in6 has a sin6_len member])
else
AC_DEFINE(HAVE_SIN6_LEN,0,[Define to 1 if sockaddr_in6 has a sin6_len member])
fi
])
dnl aclocal-check-setgroups
dnl
dnl Defines HAVE_SETGROUPS.
dnl
AC_DEFUN([ACLOCAL_CHECK_SETGROUPS],
[AC_CACHE_CHECK([for setgroups],[aclocal_cv_setgroups],
[
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
[[#include <sys/types.h>
#include <unistd.h>
#include <grp.h>]],
[[setgroups(0,0) ;]])],
aclocal_cv_setgroups=yes ,
aclocal_cv_setgroups=no )
])
if test $aclocal_cv_setgroups = yes; then
AC_DEFINE(HAVE_SETGROUPS,1,[Define to 1 if setgroups is available])
else
AC_DEFINE(HAVE_SETGROUPS,0,[Define to 1 if setgroups is available])
fi
])
dnl aclocal-check-getpwnam-r
dnl
dnl Defines HAVE_GETPWNAM_R.
dnl
AC_DEFUN([ACLOCAL_CHECK_GETPWNAM_R],
[AC_CACHE_CHECK([for getpwnam_r],[aclocal_cv_getpwnam_r],
[
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
[[#include <sys/types.h>
#include <pwd.h>]],
[[char c;
struct passwd *r;
getpwnam_r("",r,&c,0,&r) ;]])],
aclocal_cv_getpwnam_r=yes ,
aclocal_cv_getpwnam_r=no )
])
if test $aclocal_cv_getpwnam_r = yes; then
AC_DEFINE(HAVE_GETPWNAM_R,1,[Define to 1 if getpwnam_r in pwd.h])
else
AC_DEFINE(HAVE_GETPWNAM_R,0,[Define to 1 if getpwnam_r in pwd.h])
fi
])
dnl aclocal-check-gmtime-r
dnl
dnl Defines HAVE_GMTIME_R.
dnl
AC_DEFUN([ACLOCAL_CHECK_GMTIME_R],
[AC_CACHE_CHECK([for gmtime_r],[aclocal_cv_gmtime_r],
[
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
[[#include <time.h>]],
[[gmtime_r((time_t*)0,(struct tm*)0) ;]])],
aclocal_cv_gmtime_r=yes ,
aclocal_cv_gmtime_r=no )
])
if test $aclocal_cv_gmtime_r = yes; then
AC_DEFINE(HAVE_GMTIME_R,1,[Define to 1 if gmtime_r in time.h])
else
AC_DEFINE(HAVE_GMTIME_R,0,[Define to 1 if gmtime_r in time.h])
fi
])
dnl aclocal-check-localtime_r
dnl
dnl Defines HAVE_LOCALTIME_R.
dnl
AC_DEFUN([ACLOCAL_CHECK_LOCALTIME_R],
[AC_CACHE_CHECK([for localtime_r],[aclocal_cv_localtime_r],
[
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
[[#include <time.h>]],
[[localtime_r((time_t*)0,(struct tm*)0) ;]])],
aclocal_cv_localtime_r=yes ,
aclocal_cv_localtime_r=no )
])
if test $aclocal_cv_localtime_r = yes; then
AC_DEFINE(HAVE_LOCALTIME_R,1,[Define to 1 if localtime_r in time.h])
else
AC_DEFINE(HAVE_LOCALTIME_R,0,[Define to 1 if localtime_r in time.h])
fi
])
dnl aclocal-check-buggy-ctime
dnl
dnl Defines HAVE_BUGGY_CTIME if ctime + unistd.h doesnt compile.
dnl Needed for old versions of sunpro. Remove soon.
dnl
AC_DEFUN([ACLOCAL_CHECK_BUGGY_CTIME],
[AC_CACHE_CHECK([for buggy ctime],[aclocal_cv_buggy_ctime],
[
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
[[#include <ctime>
#include <unistd.h>]],
[[ ]])] ,
aclocal_cv_buggy_ctime=no ,
aclocal_cv_buggy_ctime=yes )
])
if test $aclocal_cv_buggy_ctime = yes; then
AC_DEFINE(HAVE_BUGGY_CTIME,1,[Define to 1 if <ctime> requires <time.h>])
else
AC_DEFINE(HAVE_BUGGY_CTIME,0,[Define to 1 if <ctime> requires <time.h>])
fi
])
dnl aclocal-capabilities
dnl
dnl Sets G_CAPABILITIES to represent the configure options.
dnl
AC_DEFUN([ACLOCAL_CAPABILITIES],
[
changequote(<<,>>)
G_CAPABILITIES="@@`echo \"$ac_configure_args\" | sed 's/ /:/g' | sed 's/[^_A-Za-z0-9/=:]//g'`@@"
changequote([,])
AC_SUBST(G_CAPABILITIES)
])
dnl aclocal-compiler-version
dnl
dnl Sets COMPILER_VERSION in makefiles.
dnl
dnl Used for -Ilib/<version>. Doesnt work very well but only
dnl needed for pre 3.0 gcc. Maps gcc2.96 onto gcc2.95.
dnl
AC_DEFUN([ACLOCAL_COMPILER_VERSION],
[
changequote(<<,>>)
COMPILER_VERSION_GCC=`$CXX --version 2>/dev/null | sed q | grep GCC | sed 's/[a-zA-Z][a-zA-Z]*[0-9]*//g' | sed 's/[^0-9 .]*//g;s/\./ /g;s/^ *//;s/ /./;s/ .*//;s/^/gcc/' | sed 's/gcc2.96/gcc2.95/'`
COMPILER_VERSION_SUNPRO=`$CXX -V 2>&1 | sed q | grep WorkShop | sed 's/[^0-9]*//;s/[ \.].*//;s/^/sunpro/'`
COMPILER_VERSION_ICC=`$CXX --version 2>&1 | sed q | grep ICC | sed 's/[^0-9]*//;s/[ \.].*//;s/^/icc/'`
changequote([,])
COMPILER_VERSION="${COMPILER_VERSION_GCC}${COMPILER_VERSION_SUNPRO}${COMPILER_VERSION_ICC}"
AC_SUBST(COMPILER_VERSION)
])
dnl aclocal-check-zlib
dnl
dnl Defines HAVE_ZLIB in code and ZLIB_LIBS in makefiles
dnl if zlib is available and enabled.
dnl
AC_DEFUN([WITH_ZLIB],
if test "$with_zlib" != "no"
then
[AC_CACHE_CHECK([for zlib],[aclocal_cv_zlib],
[
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
[[#include <zlib.h>]])],
aclocal_cv_zlib=yes,
aclocal_cv_zlib=no )
])
if test "$aclocal_cv_zlib" = "yes"
then
ZLIB_LIBS="-lz"
AC_DEFINE(HAVE_ZLIB,1,[Define to enable use of zlib])
else
if test "$with_zlib" = "yes"
then
AC_MSG_WARN([ignoring --with-zlib: check config.log and try setting CFLAGS])
fi
ZLIB_LIBS=""
fi
else
ZLIB_LIBS=""
fi
AC_SUBST(ZLIB_LIBS)
])
dnl aclocal-check-qt4
dnl
dnl Sets the $MOC variable and MOC in makefiles to the moc
dnl path if qt4 is found. Also sets the $aclocal_moc
dnl variable to the same value if the moc is from qt4.
dnl
dnl In the implementation remember that AC_PATH_PROG does
dnl nothing if the variable is already defined, and that
dnl it does an internal AC_SUBST.
dnl
dnl The PKG_CHECK_MODULES macro is used to set QT_LIBS
dnl and QT_CFLAGS according to pkg-config.
dnl
AC_DEFUN([ACLOCAL_CHECK_QT4],
[
PKG_CHECK_MODULES(QT,QtGui >= 4.0.1,[qt4=yes],[qt4=no])
MOC="${e_qtmoc}"
AC_PATH_PROG(MOC,moc)
if test "$MOC" != ""
then
AC_MSG_CHECKING([moc is for qt 4])
if test x$GREP = x ; then GREP=grep ; fi
if test -x "$MOC" -a "`$MOC -v 2>&1 | $GREP 'Qt 4'`" != "" ; then
AC_MSG_RESULT([yes])
aclocal_moc="$MOC"
else
AC_MSG_RESULT([no])
aclocal_moc=""
fi
fi
if test "$qt4" = no -a "$e_qtmoc" = ""
then
aclocal_moc=""
fi
])
dnl enable-gui
dnl
dnl Sets QT_LIBS, MOC and "if GUI" in makefiles if a GUI build is required.
dnl
dnl Requires ACLOCAL_CHECK_QT4 to have been run first.
dnl
AC_DEFUN([ENABLE_GUI],
[
if test "$enable_gui" = "no"
then
MOC=""
else
if test "$enable_gui" = "yes" -a "$aclocal_moc" = ""
then
AC_MSG_WARN([ignoring --enable-gui: set e_qtmoc, QT_LIBS and QT_CFLAGS to override])
fi
MOC="$aclocal_moc"
fi
if test "`uname`" = "Darwin" -a "$QT_LIBS" = ""
then
QT_LIBS="-framework QtGui -framework QtCore"
fi
AC_SUBST(QT_LIBS)
AC_SUBST(MOC)
AM_CONDITIONAL(GUI,test x$MOC != x )
if test x$enable_exec = xno -a x$MOC != x
then
AC_MSG_ERROR([using --disable-exec requires --disable-gui])
fi
])
dnl enable-debug
dnl
dnl Defines _DEBUG if requested. Defaults to "no" but
dnl allows "--enable-debug=full" as per kdevelop.
dnl
AC_DEFUN([ENABLE_DEBUG],
[
if test "$enable_debug" = "no" -o -z "$enable_debug"
then
:
else
AC_DEFINE(_DEBUG,1,[Define to enable extra debug messages at compile-time])
fi
])
dnl enable-verbose
dnl
dnl The "--disable-verbose" switch disables the verbose-logging macro.
dnl
AC_DEFUN([ENABLE_VERBOSE],
[
if test x$enable_verbose != xno
then
:
else
AC_DEFINE(G_NO_LOG,1,[Define to disable the G_LOG macro])
fi
])
dnl enable-pop
dnl
dnl The "--disable-pop" switch builds the pop library from
dnl do-nothing stubs.
dnl
AC_DEFUN([ENABLE_POP],
[
if test x$enable_pop != xno
then
:
else
AC_DEFINE(USE_NO_POP,1,[Define to eliminate unused pop code as a size optimisation])
fi
AM_CONDITIONAL(POP,test x$enable_pop != xno)
])
dnl enable-exec
dnl
dnl The "--disable-exec" switch removes source files are concerned
dnl with exec-ing external programs.
dnl
AC_DEFUN([ENABLE_EXEC],
[
if test x$enable_exec != xno
then
:
else
AC_DEFINE(USE_NO_EXEC,1,[Define to eliminate unused exec-ing code as a size optimisation])
fi
AM_CONDITIONAL(EXEC,test x$enable_exec != xno)
])
dnl enable-admin
dnl
dnl The "--disable-admin" switch removes source files that implement
dnl the admin interface.
dnl
AC_DEFUN([ENABLE_ADMIN],
[
if test x$enable_admin != xno
then
:
else
AC_DEFINE(USE_NO_ADMIN,1,[Define to eliminate unused admin interface code as a size optimisation])
fi
AM_CONDITIONAL(ADMIN,test x$enable_admin != xno)
])
dnl enable-auth
dnl
dnl The "--disable-admin" switch removes source files that implement authentication.
dnl
AC_DEFUN([ENABLE_AUTH],
[
if test x$enable_auth != xno
then
:
else
AC_DEFINE(USE_NO_AUTH,1,[Define to eliminate unused authentication code as a size optimisation])
fi
AM_CONDITIONAL(AUTH,test x$enable_auth != xno)
if test x$enable_auth = xno -a x$enable_pop != xno
then
AC_MSG_ERROR([using --disable-auth requires --disable-pop])
fi
])
dnl enable-dns
dnl
dnl The "--disable-dns" switch disables dns lookup so host and service
dnl names must be given as ip addresses and port numbers. This can be
dnl make static linking easier, especially in embedded systems.
dnl
AC_DEFUN([ENABLE_DNS],
[
AM_CONDITIONAL(DNS,test x$enable_dns != xno)
])
dnl enable-identity
dnl
dnl The "--disable-identity" switch disables userid switching thereby
dnl removing the dependence on getpwnam and /etc/passwd. This can
dnl make static linking easier, especially in embedded systems.
dnl
AC_DEFUN([ENABLE_IDENTITY],
[
AM_CONDITIONAL(IDENTITY,test x$enable_identity != xno)
])
dnl enable-small-config
dnl
dnl The "--enable-small-config" switch replaces the complex command-line
dnl parsing code with something simpler and less functional.
dnl
AC_DEFUN([ENABLE_SMALL_CONFIG],
[
if test x$enable_small_config = xyes
then
AC_DEFINE(USE_SMALL_CONFIG,1,[Define to eliminate unused config code as a size optimisation])
else
:
fi
AM_CONDITIONAL(SMALL_CONFIG,test x$enable_small_config = xyes)
])
dnl enable-small-exceptions
dnl
dnl The "--enable-small-exceptions" defines exception classes as functions
dnl as a size optimisation. This should probably become the default when
dnl it has had more testing.
dnl
AC_DEFUN([ENABLE_SMALL_EXCEPTIONS],
[
if test x$enable_small_exceptions = xyes
then
AC_DEFINE(USE_SMALL_EXCEPTIONS,1,[Define to have exception types as functions as a size optimisation])
else
:
fi
])
dnl enable-ipv6
dnl
dnl The "--enable-ipv6" switch enables ipv6 as long as ipv6 is available.
dnl
dnl Note that this requires ACLOCAL_CHECK_IPV6 to have been run.
dnl
AC_DEFUN([ENABLE_IPV6],
[
if test "$enable_ipv6" = "yes"
then
if test "$aclocal_cv_ipv6" != "yes"
then
AC_MSG_WARN([ignoring --enable-ipv6])
aclocal_use_ipv6="no"
else
AC_DEFINE(USE_IPV6,1,[Define to use IPv6])
aclocal_use_ipv6="yes"
fi
else
aclocal_use_ipv6="no"
fi
AM_CONDITIONAL(IPV6,test x$aclocal_use_ipv6 = xyes)
])
dnl enable-proxy
dnl
dnl The "--disable-proxy" switch disables smtp proxying as a size optimisation.
dnl
AC_DEFUN([ENABLE_PROXY],
[
if test x$enable_proxy != xno
then
:
else
AC_DEFINE(USE_NO_PROXY,1,[Define to eliminate proxying code as a size optimisation])
fi
AM_CONDITIONAL(PROXY,test x$enable_proxy != xno)
])
dnl enable-mac
dnl
dnl The "--enable-mac" switch tweaks things for a mac build.
dnl
AC_DEFUN([ENABLE_MAC],
[
if test x$enable_mac = xyes -o "`uname`" = "Darwin"
then
AC_DEFINE(G_MAC,1,[Define for a mac build])
fi
AM_CONDITIONAL(MAC,test x$enable_mac = xyes -o "`uname`" = "Darwin")
])
dnl enable-testing
dnl
dnl The "--disable-testing" switch turns off make-check tests.
dnl Eg. "make distcheck DISTCHECK_CONFIGURE_FLAGS=--disable-testing".
dnl
AC_DEFUN([ENABLE_TESTING],
[
AM_CONDITIONAL(TESTING,test x$enable_testing != xno)
])
dnl with-openssl
dnl
dnl Sets SSL_LIBS and "if OPENSSL" in makefiles.
dnl
AC_DEFUN([WITH_OPENSSL],
if test "$with_openssl" != "no"
then
[AC_CACHE_CHECK([for openssl],[aclocal_cv_openssl],
[
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
[[#include <openssl/ssl.h>]],
[[SSL_CTX * p = 0 ; return 1;]])],
aclocal_cv_openssl=yes,
aclocal_cv_openssl=no )
])
if test "$aclocal_cv_openssl" = "yes"
then
SSL_LIBS="-lssl -lcrypto"
aclocal_ssl="openssl"
else
if test "$with_openssl" = "yes"
then
AC_MSG_WARN([ignoring --with-openssl: check config.log and try setting CFLAGS])
fi
SSL_LIBS=""
aclocal_ssl="none"
fi
else
SSL_LIBS=""
aclocal_ssl="none"
fi
AC_SUBST(SSL_LIBS)
AM_CONDITIONAL(OPENSSL,test x$aclocal_ssl = xopenssl)
])
dnl with-glob
dnl
dnl Sets "if GLOB" in makefiles. Defaults to auto.
dnl
AC_DEFUN([WITH_GLOB],
if test "$with_glob" != "no"
then
[AC_CACHE_CHECK([for glob],[aclocal_cv_have_glob],
[
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
[[#include <glob.h>]],
[[glob_t * p = 0 ; globfree(p) ; return 1;]])],
aclocal_cv_have_glob=yes,
aclocal_cv_have_glob=no )
])
if test "$aclocal_cv_have_glob" = "yes"
then
aclocal_use_glob="yes"
else
if test "$with_glob" = "yes"
then
AC_MSG_WARN([ignoring --with-glob])
fi
aclocal_use_glob="no"
fi
else
if test "$aclocal_cv_have_glob" = "yes"
then
AC_MSG_WARN([not using available glob()])
fi
aclocal_use_glob="no"
fi
AM_CONDITIONAL(GLOB,test x$aclocal_use_glob = xyes)
])
dnl enable-static-linking
dnl
dnl The "--enable-static-linking" makes a half-hearted attempt
dnl at static linking. Only applicable to gcc. Note that statically
dnl linked openssl may require a statically linked zlib so try
dnl using "SSL_LIBS=-lssl -lcrypto -lz".
dnl
AC_DEFUN([ENABLE_STATIC_LINKING],
[
if test "$enable_static_linking" = "yes"
then
STATIC_START="-Xlinker -Bstatic"
STATIC_END="${ZLIB_LIBS} -Xlinker -Bdynamic -ldl"
else
STATIC_START=""
STATIC_END=""
fi
AC_SUBST(STATIC_START)
AC_SUBST(STATIC_END)
])
dnl enable-install-hook
dnl
dnl The "--enable-install-hook" switch enables the editing
dnl of "emailrelay.conf" with the correct install directories.
dnl This should be disabled when building a package.
dnl
AC_DEFUN([ENABLE_INSTALL_HOOK],
[
AM_CONDITIONAL(INSTALL_HOOK,test x$enable_install_hook != xno)
])
dnl with-doxygen
dnl
dnl Sets HAVE_DOXYGEN in makefiles if doxygen is to be used.
dnl
dnl Usually used after doing a doxygen program check to set
dnl the default value for $HAVE_DOXYGEN.
dnl
AC_DEFUN([WITH_DOXYGEN],
[
if test "$with_doxygen" != ""
then
if test "$with_doxygen" = "yes" -a "$HAVE_DOXYGEN" != "yes"
then
AC_MSG_WARN([forcing use of doxygen even though not found])
fi
HAVE_DOXYGEN="$with_doxygen"
fi
AC_SUBST(HAVE_DOXYGEN)
])
dnl with-man2html
dnl
dnl Sets HAVE_MAN2HTML in makefiles if man2html is to be used.
dnl
dnl Usually used after doing a man2html program check to set
dnl the default value for $HAVE_MAN2HTML.
dnl
AC_DEFUN([WITH_MAN2HTML],
[
if test "$with_man2html" != ""
then
if test "$with_man2html" = "yes" -a "$HAVE_MAN2HTML" != "yes"
then
AC_MSG_WARN([forcing use of man2html even though not found])
fi
HAVE_MAN2HTML="$with_man2html"
fi
AC_SUBST(HAVE_MAN2HTML)
])
dnl aclocal-check-pam-headers
dnl
dnl Defines aclocal_cv_pam_headers_in_pam if PAM headers are in /usr/include/pam.
dnl
AC_DEFUN([ACLOCAL_CHECK_PAM_HEADERS],
[AC_CACHE_CHECK([for pam headers in /usr/include/pam],[aclocal_cv_pam_headers_in_pam],
[
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
[[#include <pam/pam_appl.h>]],
[[ ]])] ,
aclocal_cv_pam_headers_in_pam=yes ,
aclocal_cv_pam_headers_in_pam=no )
])
])
dnl aclocal-check-pam
dnl
dnl Check for pam availability.
dnl
AC_DEFUN([ACLOCAL_CHECK_PAM],
[AC_CACHE_CHECK([for linux pam],[aclocal_cv_pam_compiles],
[
if test "$aclocal_cv_pam_headers_in_pam" = "yes"
then
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
[[#include <pam/pam_appl.h>]],
[[int rc = pam_start("","",(const struct pam_conv*)0,(pam_handle_t**)0)]])] ,
aclocal_cv_pam_compiles=yes ,
aclocal_cv_pam_compiles=no )
else
AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
[[#include <security/pam_appl.h>]],
[[int rc = pam_start("","",(const struct pam_conv*)0,(pam_handle_t**)0)]])] ,
aclocal_cv_pam_compiles=yes ,
aclocal_cv_pam_compiles=no )
fi
])
])
dnl with-pam
dnl
AC_DEFUN([WITH_PAM],
[
aclocal_cv_use_pam="$with_pam"
if test "$aclocal_cv_use_pam" = ""
then
aclocal_cv_use_pam="$aclocal_cv_pam_compiles"
fi
if test "$aclocal_cv_use_pam" = "yes"
then
if test "$aclocal_cv_pam_compiles" = "no"
then
AC_MSG_WARN([forcing use of pam even though it does not seem to compile])
fi
PAM_LIBS="-lpam"
if test "$aclocal_cv_pam_headers_in_pam" = "yes"
then
PAM_INCLUDE="-I/usr/include/pam"
else
PAM_INCLUDE="-I/usr/include/security"
fi
fi
AC_SUBST(PAM_LIBS)
AC_SUBST(PAM_INCLUDE)
AM_CONDITIONAL(PAM,test x$aclocal_cv_use_pam = xyes)
])
dnl set-directories
dnl
dnl Sets directory paths.
dnl
AC_DEFUN([SET_DIRECTORIES],
[
# the following are used in the makefiles:
# * sbindir
# * e_libexecdir
# * e_examplesdir
# * e_sysconfdir
# * e_pamdir
# * mandir
# * e_docdir
# * e_spooldir
# * e_initdir
# * e_icondir
if test "$e_libexecdir" = ""
then
e_libexecdir="$libexecdir/$PACKAGE"
fi
if test "$e_examplesdir" = ""
then
e_examplesdir="$libexecdir/$PACKAGE/examples"
fi
if test "$e_sysconfdir" = ""
then
e_sysconfdir="$sysconfdir"
fi
if test "$e_docdir" = ""
then
e_docdir="$docdir"
if test "$e_docdir" = ""
then
e_docdir="$datadir/$PACKAGE/doc"
fi
fi
if test "$e_spooldir" = ""
then
e_spooldir="$localstatedir/spool/$PACKAGE"
fi
if test "$e_pamdir" = ""
then
e_pamdir="$sysconfdir/pam.d"
fi
if test "$e_initdir" = ""
then
e_initdir="$libexecdir/$PACKAGE/init"
fi
if test "$e_icondir" = ""
then
e_icondir="$datadir/$PACKAGE"
fi
])