123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593 |
- dnl Process this file with autoconf to produce a configure script.
- AC_INIT(include/includes.h)
- AC_PREREQ(2.52)
- AC_CONFIG_HEADER(include/config.h)
- AC_CONFIG_AUX_DIR(../../config)
- # we want to be compatibe with older versions of Samba
- AC_PREFIX_DEFAULT(/usr/local/samba)
- AC_SYS_LARGEFILE
- dnl Unique-to-Samba variables we'll be playing with.
- AC_SUBST(SHELL)
- AC_SUBST(MPROGS)
- AC_SUBST(LDSHFLAGS)
- AC_SUBST(HOST_OS)
- AC_SUBST(WRAP)
- AC_SUBST(WRAP32)
- # compile with optimization and without debugging by default
- CFLAGS=${CFLAGS-"-O"}
- dnl Checks for programs.
- AC_PROG_CC
- AC_PROG_INSTALL
- AC_PROG_AWK
- AC_CHECK_TOOL(AR, ar, ar)
- dnl Check if C compiler understands -c and -o at the same time
- AC_PROG_CC_C_O
- if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = no"; then
- BROKEN_CC=
- else
- BROKEN_CC=#
- fi
- AC_SUBST(BROKEN_CC)
- AC_CANONICAL_HOST
- AC_VALIDATE_CACHE_SYSTEM_TYPE
- SAMBA_MAINTAINER_MODE
- AC_INLINE
- AC_HEADER_STDC
- AC_HEADER_DIRENT
- AC_HEADER_TIME
- AC_CHECK_HEADERS(arpa/inet.h sys/fcntl.h sys/select.h fcntl.h sys/time.h sys/unistd.h)
- AC_CHECK_HEADERS(unistd.h utime.h sys/id.h limits.h memory.h net/if.h)
- AC_CHECK_HEADERS(compat.h rpc/rpc.h rpcsvc/nis.h rpcsvc/yp_prot.h rpcsvc/ypclnt.h)
- AC_CHECK_HEADERS(sys/param.h ctype.h sys/resource.h sys/ioctl.h sys/mode.h)
- AC_CHECK_HEADERS(sys/mman.h sys/filio.h sys/priv.h string.h strings.h sys/socket.h)
- AC_CHECK_HEADERS(sys/mount.h sys/vfs.h sys/fs/s5param.h sys/filsys.h termios.h termio.h)
- AC_CHECK_HEADERS(sys/termio.h sys/statfs.h sys/dustat.h sys/statvfs.h stdarg.h sys/sockio.h)
- AC_CHECK_HEADERS(netinet/tcp.h netinet/in_systm.h netinet/in_ip.h)
- AC_CHECK_HEADERS(sys/security.h security/pam_appl.h)
- AC_CHECK_HEADERS(stropts.h poll.h syscall.h sys/syscall.h)
- AC_CHECK_HEADERS(sys/acl.h sys/cdefs.h)
- AC_CHECK_SIZEOF(int)
- AC_CHECK_SIZEOF(long)
- AC_CHECK_SIZEOF(short)
- AC_CHECK_SIZEOF(off_t)
- AC_CHECK_SIZEOF(ino_t)
- AC_C_CONST
- AC_C_INLINE
- AC_C_BIGENDIAN
- AC_C_CHAR_UNSIGNED
- AC_TYPE_SIGNAL
- AC_TYPE_UID_T
- AC_TYPE_MODE_T
- AC_TYPE_OFF_T
- AC_TYPE_SIZE_T
- AC_TYPE_PID_T
- AC_CHECK_TYPE(ino_t,unsigned)
- AC_CHECK_TYPE(loff_t,off_t)
- AC_CHECK_TYPE(offset_t,off_t)
- AC_CHECK_TYPE(ssize_t, int)
- # we need libdl for PAM and the new VFS code
- AC_CHECK_LIB(dl,main)
- # stupid glibc has the functions but no declaration. grrrr.
- AC_CACHE_CHECK([for crypt declaration],samba_cv_have_crypt_decl,[
- AC_TRY_COMPILE([#include <unistd.h>],[int i = (int)crypt],
- samba_cv_have_crypt_decl=yes,samba_cv_have_crypt_decl=no)])
- if test x"$samba_cv_have_crypt_decl" = x"yes"; then
- AC_DEFINE(HAVE_CRYPT_DECL, 1, [Define if crypt() is declared])
- fi
- AC_FUNC_MEMCMP
- ###############################################
- # test for where we get crypt() from
- AC_CHECK_FUNCS(crypt)
- if test x"$ac_cv_func_crypt" = x"no"; then
- AC_CHECK_LIB(crypt, crypt, [LIBS="$LIBS -lcrypt";
- AC_DEFINE(HAVE_CRYPT)])
- fi
- # The following test taken from the cvs sources
- # If we can't find connect, try looking in -lsocket, -lnsl, and -linet.
- # The Irix 5 libc.so has connect and gethostbyname, but Irix 5 also has
- # libsocket.so which has a bad implementation of gethostbyname (it
- # only looks in /etc/hosts), so we only look for -lsocket if we need
- # it.
- AC_CHECK_FUNCS(connect)
- if test x"$ac_cv_func_connect" = x"no"; then
- case "$LIBS" in
- *-lnsl*) ;;
- *) AC_CHECK_LIB(nsl_s, printf) ;;
- esac
- case "$LIBS" in
- *-lnsl*) ;;
- *) AC_CHECK_LIB(nsl, printf) ;;
- esac
- case "$LIBS" in
- *-lsocket*) ;;
- *) AC_CHECK_LIB(socket, connect) ;;
- esac
- case "$LIBS" in
- *-linet*) ;;
- *) AC_CHECK_LIB(inet, connect) ;;
- esac
- dnl We can't just call AC_CHECK_FUNCS(connect) here, because the value
- dnl has been cached.
- if test x"$ac_cv_lib_socket_connect" = x"yes" ||
- test x"$ac_cv_lib_inet_connect" = x"yes"; then
- # ac_cv_func_connect=yes
- # don't! it would cause AC_CHECK_FUNC to succeed next time configure is run
- AC_DEFINE(HAVE_CONNECT)
- fi
- fi
- AC_CHECK_FUNCS(waitpid getcwd strtoul chown chmod)
- AC_CHECK_FUNCS(fstat utime utimes getrlimit fsync memset)
- AC_CHECK_FUNCS(memmove vsnprintf snprintf setsid pipe crypt16 getauthuid)
- AC_CHECK_FUNCS(sigprocmask sigblock sigaction innetgr setnetgrent getnetgrent endnetgrent)
- AC_CHECK_FUNCS(initgroups select rdchk getgrnam pathconf)
- AC_CHECK_FUNCS(setpriv setgidx setuidx setgroups mktime rename)
- AC_CHECK_FUNCS(grantpt dup2 yp_get_default_domain getpwanam)
- AC_CHECK_FUNCS(srandom random srand rand setenv usleep strcasecmp)
- AC_CHECK_FUNCS(getdents)
- AC_CHECK_FUNCS(llseek)
- #
- # If no strcasecmp, check for it in some known places
- # It is in -lresolv on ReliantUNIX and UnixWare
- # -lresolve *must* follow -lnsl for name resolution to work properly
- #
- if test x$ac_cv_func_strcasecmp = xno ; then
- AC_CHECK_LIB(resolv,strcasecmp,[LIBS="$LIBS -lresolv"]
- AC_DEFINE(HAVE_STRCASECMP))
- fi
- #
- # Check for the functions putprpwnam, set_auth_parameters,
- # getspnam, bigcrypt and getprpwnam in -lsec and -lsecurity
- # Needed for OSF1 and HPUX.
- #
- AC_LIBTESTFUNC(security, putprpwnam)
- AC_LIBTESTFUNC(sec, putprpwnam)
- AC_LIBTESTFUNC(security, set_auth_parameters)
- AC_LIBTESTFUNC(sec, set_auth_parameters)
- AC_LIBTESTFUNC(security, getspnam)
- AC_LIBTESTFUNC(sec, getspnam)
- AC_LIBTESTFUNC(security, bigcrypt)
- AC_LIBTESTFUNC(sec, bigcrypt)
- AC_LIBTESTFUNC(security, getprpwnam)
- AC_LIBTESTFUNC(sec, getprpwnam)
- # this bit needs to be modified for each OS that is suported by
- # smbwrapper. You need to specify how to created a shared library and
- # how to compile C code to produce PIC object files
- # these are the defaults, good for lots of systems
- HOST_OS="$host_os"
- LDSHFLAGS="-shared"
- # and these are for particular systems
- case "$host_os" in
- *linux*) AC_DEFINE(LINUX, 1, [Define on Linux]);;
- *solaris*) AC_DEFINE(SUNOS5, 1, [Define on SunOS 5 (Solaris)])
- LDSHFLAGS="-G"
- ;;
- *sunos*) AC_DEFINE(SUNOS4, 1, [Define on SunOS 4])
- LDSHFLAGS=""
- ;;
- *bsd*) LDSHFLAGS="-shared -Bshareable"
- ;;
- *irix*) AC_DEFINE(IRIX, 1, [Define on IRIX])
- case "$host_os" in
- *irix6*) AC_DEFINE(IRIX6, 1, [Define on IRIX 6])
- ;;
- esac
- ATTEMPT_WRAP32_BUILD=yes
- ;;
- *aix*) AC_DEFINE(AIX, 1, [Define on AIX]);;
- *hpux*) AC_DEFINE(HPUX, 1, [Define on HP-UX]);;
- *qnx*) AC_DEFINE(QNX, 1, [Define on QNX]);;
- *osf*) AC_DEFINE(OSF1, 1, [Define on OSF1]);;
- *sco*) AC_DEFINE(SCO, 1, [Define on SCO]);;
- *next2*) AC_DEFINE(NEXT2, 1, [Define on NeXT 2]);;
- *dgux*) AC_CHECK_PROG( ROFF, groff, [groff -etpsR -Tascii -man]);;
- *sysv4*)
- case "$host" in
- *-univel-*) if [ test "$GCC" != yes ]; then
- AC_DEFINE(HAVE_MEMSET)
- fi
- LDSHFLAGS="-G"
- ;;
- esac
- ;;
- *sysv5*)
- if [ test "$GCC" != yes ]; then
- AC_DEFINE(HAVE_MEMSET)
- fi
- LDSHFLAGS="-G"
- ;;
- esac
- ################
- AC_CACHE_CHECK([for long long],samba_cv_have_longlong,[
- AC_TRY_RUN([
- #include <stdio.h>
- #include <stdlib.h>
- main() { long long x = 1000000; x *= x; exit(((x/1000000) == 1000000)? 0: 1); }],
- samba_cv_have_longlong=yes,samba_cv_have_longlong=no,samba_cv_have_longlong=cross)])
- if test x"$samba_cv_have_longlong" = x"yes"; then
- AC_DEFINE(HAVE_LONGLONG, 1, [Define if long long is usable])
- fi
- AC_CACHE_CHECK([for sin_len in sock],samba_cv_HAVE_SOCK_SIN_LEN,[
- AC_TRY_COMPILE([#include <sys/types.h>
- #include <sys/socket.h>
- #include <netinet/in.h>],
- [struct sockaddr_in sock; sock.sin_len = sizeof(sock);],
- samba_cv_HAVE_SOCK_SIN_LEN=yes,samba_cv_HAVE_SOCK_SIN_LEN=no)])
- if test x"$samba_cv_HAVE_SOCK_SIN_LEN" = x"yes"; then
- AC_DEFINE(HAVE_SOCK_SIN_LEN, 1, [Define if struct sockaddr_in has sin_len field])
- fi
- AC_CACHE_CHECK([for __FILE__ macro],samba_cv_HAVE_FILE_MACRO,[
- AC_TRY_COMPILE([#include <stdio.h>], [printf("%s\n", __FILE__);],
- samba_cv_HAVE_FILE_MACRO=yes,samba_cv_HAVE_FILE_MACRO=no)])
- if test x"$samba_cv_HAVE_FILE_MACRO" = x"yes"; then
- AC_DEFINE(HAVE_FILE_MACRO, 1, [Define if __FILE__ macro is supported])
- fi
- AC_CACHE_CHECK([for __FUNCTION__ macro],samba_cv_HAVE_FUNCTION_MACRO,[
- AC_TRY_COMPILE([#include <stdio.h>], [printf("%s\n", __FUNCTION__);],
- samba_cv_HAVE_FUNCTION_MACRO=yes,samba_cv_HAVE_FUNCTION_MACRO=no)])
- if test x"$samba_cv_HAVE_FUNCTION_MACRO" = x"yes"; then
- AC_DEFINE(HAVE_FUNCTION_MACRO, 1, [Define if __FUNCTION__ macro is supported])
- fi
- AC_CACHE_CHECK([if gettimeofday takes tz argument],samba_cv_HAVE_GETTIMEOFDAY_TZ,[
- AC_TRY_RUN([
- #include <sys/time.h>
- #include <unistd.h>
- #include <stdlib.h>
- main() { struct timeval tv; exit(gettimeofday(&tv, NULL));}],
- samba_cv_HAVE_GETTIMEOFDAY_TZ=yes,samba_cv_HAVE_GETTIMEOFDAY_TZ=no,samba_cv_HAVE_GETTIMEOFDAY_TZ=cross)])
- if test x"$samba_cv_HAVE_GETTIMEOFDAY_TZ" = x"yes"; then
- AC_DEFINE(HAVE_GETTIMEOFDAY_TZ, 1, [Define if gettimeofday takes tz argument])
- fi
- AC_CACHE_CHECK([for broken readdir],samba_cv_HAVE_BROKEN_READDIR,[
- AC_TRY_RUN([
- #include <sys/types.h>
- #include <stdlib.h>
- #include <dirent.h>
- main() { struct dirent *di; DIR *d = opendir("."); di = readdir(d);
- if (di && di->d_name[-2] == '.' && di->d_name[-1] == 0 &&
- di->d_name[0] == 0) exit(0); exit(1);} ],
- samba_cv_HAVE_BROKEN_READDIR=yes,samba_cv_HAVE_BROKEN_READDIR=no,samba_cv_HAVE_BROKEN_READDIR=cross)])
- if test x"$samba_cv_HAVE_BROKEN_READDIR" = x"yes"; then
- AC_DEFINE(HAVE_BROKEN_READDIR, 1, [Define if readdir() is broken])
- fi
- AC_CACHE_CHECK([for kernel oplock type definitions],samba_cv_HAVE_KERNEL_OPLOCKS,[
- AC_TRY_COMPILE([#include <sys/types.h>
- #include <fcntl.h>],
- [oplock_stat_t t; t.os_state = OP_REVOKE; t.os_dev = 1; t.os_ino = 1;],
- samba_cv_HAVE_KERNEL_OPLOCKS=yes,samba_cv_HAVE_KERNEL_OPLOCKS=no)])
- if test x"$samba_cv_HAVE_KERNEL_OPLOCKS" = x"yes"; then
- AC_DEFINE(HAVE_KERNEL_OPLOCKS, 1, [Define to use kernel oplock capabilities])
- fi
- #
- # Check for int16, uint16, int32 and uint32 in rpc/types.h included from rpc/rpc.h
- # This is *really* broken but some systems (DEC OSF1) do this.... JRA.
- #
- AC_CACHE_CHECK([for int16 typedef included by rpc/rpc.h],samba_cv_HAVE_INT16_FROM_RPC_RPC_H,[
- AC_TRY_COMPILE([#include <sys/types.h>
- #if defined(HAVE_RPC_RPC_H)
- #include <rpc/rpc.h>
- #endif],
- [int16 testvar;],
- samba_cv_HAVE_INT16_FROM_RPC_RPC_H=yes,samba_cv_HAVE_INT16_FROM_RPC_RPC_H=no)])
- if test x"$samba_cv_HAVE_INT16_FROM_RPC_RPC_H" = x"yes"; then
- AC_DEFINE(HAVE_INT16_FROM_RPC_RPC_H, 1, [Define if rpc/rpc.h defines int16])
- fi
- AC_CACHE_CHECK([for uint16 typedef included by rpc/rpc.h],samba_cv_HAVE_UINT16_FROM_RPC_RPC_H,[
- AC_TRY_COMPILE([#include <sys/types.h>
- #if defined(HAVE_RPC_RPC_H)
- #include <rpc/rpc.h>
- #endif],
- [uint16 testvar;],
- samba_cv_HAVE_UINT16_FROM_RPC_RPC_H=yes,samba_cv_HAVE_UINT16_FROM_RPC_RPC_H=no)])
- if test x"$samba_cv_HAVE_UINT16_FROM_RPC_RPC_H" = x"yes"; then
- AC_DEFINE(HAVE_UINT16_FROM_RPC_RPC_H, 1, [Define if rpc/rpc.h defines uint16])
- fi
- AC_CACHE_CHECK([for int32 typedef included by rpc/rpc.h],samba_cv_HAVE_INT32_FROM_RPC_RPC_H,[
- AC_TRY_COMPILE([#include <sys/types.h>
- #if defined(HAVE_RPC_RPC_H)
- #include <rpc/rpc.h>
- #endif],
- [int32 testvar;],
- samba_cv_HAVE_INT32_FROM_RPC_RPC_H=yes,samba_cv_HAVE_INT32_FROM_RPC_RPC_H=no)])
- if test x"$samba_cv_HAVE_INT32_FROM_RPC_RPC_H" = x"yes"; then
- AC_DEFINE(HAVE_INT32_FROM_RPC_RPC_H, 1, [Define if rpc/rpc.h defines int32])
- fi
- AC_CACHE_CHECK([for uint32 typedef included by rpc/rpc.h],samba_cv_HAVE_UINT32_FROM_RPC_RPC_H,[
- AC_TRY_COMPILE([#include <sys/types.h>
- #if defined(HAVE_RPC_RPC_H)
- #include <rpc/rpc.h>
- #endif],
- [uint32 testvar;],
- samba_cv_HAVE_UINT32_FROM_RPC_RPC_H=yes,samba_cv_HAVE_UINT32_FROM_RPC_RPC_H=no)])
- if test x"$samba_cv_HAVE_UINT32_FROM_RPC_RPC_H" = x"yes"; then
- AC_DEFINE(HAVE_UINT32_FROM_RPC_RPC_H, 1, [Define if rpc/rpc.h defines uint32])
- fi
- dnl
- dnl Some systems (SCO) have a problem including
- dnl <prot.h> and <rpc/rpc.h> due to AUTH_ERROR being defined
- dnl as a #define in <prot.h> and as part of an enum
- dnl in <rpc/rpc.h>.
- dnl
- AC_CACHE_CHECK([for conflicting AUTH_ERROR define in rpc/rpc.h],samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT,[
- AC_TRY_COMPILE([#include <sys/types.h>
- #ifdef HAVE_SYS_SECURITY_H
- #include <sys/security.h>
- #include <prot.h>
- #endif /* HAVE_SYS_SECURITY_H */
- #if defined(HAVE_RPC_RPC_H)
- #include <rpc/rpc.h>
- #endif],
- [int testvar;],
- samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT=no,samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT=yes)])
- if test x"$samba_cv_HAVE_RPC_AUTH_ERROR_CONFLICT" = x"yes"; then
- AC_DEFINE(HAVE_RPC_AUTH_ERROR_CONFLICT, 1, [Define if rpc/rpc.h defines AUTH_ERROR])
- fi
- netmask=no;
- AC_CACHE_CHECK([for netmask ifconf],samba_cv_HAVE_NETMASK_IFCONF,[
- AC_TRY_RUN([
- #define HAVE_NETMASK_IFCONF 1
- #define AUTOCONF 1
- #include "confdefs.h"
- #include "${srcdir-.}/lib/netmask.c"],
- samba_cv_HAVE_NETMASK_IFCONF=yes,samba_cv_HAVE_NETMASK_IFCONF=no,samba_cv_HAVE_NETMASK_IFCONF=cross)])
- if test x"$samba_cv_HAVE_NETMASK_IFCONF" = x"yes"; then
- netmask=yes;AC_DEFINE(HAVE_NETMASK_IFCONF, 1, [Define to use IFCONF style netmask])
- fi
- if test $netmask = no; then
- AC_CACHE_CHECK([for netmask ifreq],samba_cv_HAVE_NETMASK_IFREQ,[
- AC_TRY_RUN([
- #define HAVE_NETMASK_IFREQ 1
- #define AUTOCONF 1
- #include "confdefs.h"
- #include "${srcdir-.}/lib/netmask.c"],
- samba_cv_HAVE_NETMASK_IFREQ=yes,samba_cv_HAVE_NETMASK_IFREQ=no,samba_cv_HAVE_NETMASK_IFREQ=cross)])
- if test x"$samba_cv_HAVE_NETMASK_IFREQ" = x"yes"; then
- netmask=yes;AC_DEFINE(HAVE_NETMASK_IFREQ, 1, [Define to use IFREQ style netmask])
- fi
- fi
- if test $netmask = no; then
- AC_CACHE_CHECK([for netmask AIX],samba_cv_HAVE_NETMASK_AIX,[
- AC_TRY_RUN([
- #define HAVE_NETMASK_AIX 1
- #define AUTOCONF 1
- #include "confdefs.h"
- #include "${srcdir-.}/lib/netmask.c"],
- samba_cv_HAVE_NETMASK_AIX=yes,samba_cv_HAVE_NETMASK_AIX=no,samba_cv_HAVE_NETMASK_AIX=cross)])
- if test x"$samba_cv_HAVE_NETMASK_AIX" = x"yes"; then
- netmask=yes;AC_DEFINE(HAVE_NETMASK_AIX, 1, [Define to use AIX style netmask])
- fi
- fi
- AC_CACHE_CHECK([for broken nisplus include files],samba_cv_BROKEN_NISPLUS_INCLUDE_FILES,[
- AC_TRY_COMPILE([#include <sys/acl.h>
- #if defined(HAVE_RPCSVC_NIS_H)
- #include <rpcsvc/nis.h>
- #endif],
- [return 0;],
- samba_cv_BROKEN_NISPLUS_INCLUDE_FILES=no,samba_cv_BROKEN_NISPLUS_INCLUDE_FILES=yes)])
- if test x"$samba_cv_BROKEN_NISPLUS_INCLUDE_FILES" = x"yes"; then
- AC_DEFINE(BROKEN_NISPLUS_INCLUDE_FILES, 1,
- [Define if sys/acl.h and rpcsvc/nis.h cannot be included together])
- fi
- #################################################
- # check for a LDAP password database
- AC_MSG_CHECKING([whether to use LDAP password database])
- AC_ARG_WITH(ldap,
- [ --with-ldap Include LDAP support
- --without-ldap Don't include LDAP support (default)],
- [ case "$withval" in
- yes)
- AC_MSG_RESULT(yes)
- AC_DEFINE(WITH_LDAP, 1, [Define to enable LDAP support])
- ;;
- *)
- AC_MSG_RESULT(no)
- ;;
- esac ],
- AC_MSG_RESULT(no)
- )
- #################################################
- # check for a NISPLUS password database
- AC_MSG_CHECKING([whether to use NISPLUS password database])
- AC_ARG_WITH(nisplus,
- [ --with-nisplus Include NISPLUS password database support
- --without-nisplus Don't include NISPLUS password database support (default)],
- [ case "$withval" in
- yes)
- AC_MSG_RESULT(yes)
- AC_DEFINE(WITH_NISPLUS, 1, [Define to enable NIS+ support])
- ;;
- *)
- AC_MSG_RESULT(no)
- ;;
- esac ],
- AC_MSG_RESULT(no)
- )
- #################################################
- # check for a NISPLUS_HOME support
- AC_MSG_CHECKING([whether to use NISPLUS_HOME])
- AC_ARG_WITH(nisplus-home,
- [ --with-nisplus-home Include NISPLUS_HOME support
- --without-nisplus-home Don't include NISPLUS_HOME support (default)],
- [ case "$withval" in
- yes)
- AC_MSG_RESULT(yes)
- AC_DEFINE(WITH_NISPLUS_HOME, 1, [Define to support NISPLUS_HOME variable])
- ;;
- *)
- AC_MSG_RESULT(no)
- ;;
- esac ],
- AC_MSG_RESULT(no)
- )
- #################################################
- # check for the secure socket layer
- AC_MSG_CHECKING([whether to use SSL])
- AC_ARG_WITH(ssl,
- [ --with-ssl Include SSL support
- --without-ssl Don't include SSL support (default)
- --with-sslinc=DIR Where the SSL includes are (defaults to /usr/local/ssl)],
- [ case "$withval" in
- yes)
- AC_MSG_RESULT(yes)
- AC_DEFINE(WITH_SSL, 1, [Define to enable SSL support])
- withval="/usr/local/ssl" # default
- if test "${with_sslinc+set}" = set; then
- withval="$with_sslinc"
- case "$withval" in
- yes|no)
- AC_MSG_WARN([--with-sslinc called without argument - will use default])
- CFLAGS="-I/usr/local/ssl/include $CFLAGS"
- LIBS="-lssl -lcrypto $LIBS"
- LDFLAGS="=L/usr/local/ssl/lib $LDFLAGS"
- ;;
- * )
- CFLAGS="-I${withval}/include $CFLAGS"
- LIBS="-lssl -l crypto $LIBS"
- LDFLAGS="-L${withval}/lib $LDFLAGS"
- ;;
- esac
- else
- CFLAGS="-I/usr/local/ssl/include $CFLAGS"
- LIBS="-lssl -lcrypto $LIBS"
- LDFLAGS="-L/usr/local/ssl/lib $LDFLAGS"
- fi
- if test ! -d ${withval}; then
- AC_MSG_ERROR([called with --with-ssl, but ssl base directory ${withval} does not exist or is not a directory. Aborting config])
- fi
- CFLAGS="-DHAVE_CRYPT_DECL $CFLAGS" # Damn, SSLeay defines its own
- ;;
- *)
- AC_MSG_RESULT(no)
- ;;
- esac ],
- AC_MSG_RESULT(no)
- )
- #################################################
- # set configuration directory location
- configdir="\$(LIBDIR)"
- AC_ARG_WITH(configdir,
- [ --with-configdir=DIR Where to put configuration files (\$libdir)],
- [ case "$withval" in
- yes|no)
- #
- # Just in case anybody does it
- #
- AC_MSG_WARN([--with-configdir called without argument - will use default])
- ;;
- * )
- configdir="$withval"
- ;;
- esac]
- )
- #################################################
- # set codepage directory location
- codepagedir="\$(LIBDIR)/codepages"
- AC_ARG_WITH(codepagedir,
- [ --with-codepagedir=DIR Where to put codepage files (\$libdir/codepages)],
- [ case "$withval" in
- yes|no)
- #
- # Just in case anybody does it
- #
- AC_MSG_WARN([--with-codepagedir called without argument - will use default])
- ;;
- * )
- codepagedir="$withval"
- ;;
- esac])
- AC_MSG_CHECKING([configure summary])
- AC_TRY_RUN([
- #include <stdio.h>
- #include <stdlib.h>
- #include <unistd.h>
- main()
- {
- #if !(defined(HAVE_NETMASK_IFCONF) || defined(HAVE_NETMASK_IFREQ) || defined(HAVE_NETMASK_AIX))
- printf("WARNING: No automated netmask determination - use an interfaces line\n");
- #endif
- #if !((defined(HAVE_RANDOM) || defined(HAVE_RAND)) && (defined(HAVE_SRANDOM) || defined(HAVE_SRAND)))
- printf("ERROR: No random or srandom routine!\n");
- exit(1);
- #endif
- exit(0);
- }
- ],
- AC_MSG_RESULT(OK);,
- AC_MSG_RESULT(failure)
- AC_MSG_ERROR([Aborting config]),:)
- builddir=`pwd`
- AC_SUBST(builddir)
- AC_SUBST(configdir)
- AC_SUBST(codepagedir)
- AC_OUTPUT([include/stamp-h Makefile])
|