Diff for /embedaddon/sudo/configure.in between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 16:23:02 version 1.1.1.2, 2012/05/29 12:26:49
Line 1 Line 1
 dnl  dnl
 dnl Process this file with GNU autoconf to produce a configure script.  dnl Process this file with GNU autoconf to produce a configure script.
 dnl  dnl
dnl Copyright (c) 1994-1996,1998-2011 Todd C. Miller <Todd.Miller@courtesan.com>dnl Copyright (c) 1994-1996,1998-2012 Todd C. Miller <Todd.Miller@courtesan.com>
 dnl  dnl
AC_INIT([sudo], [1.8.3p2], [http://www.sudo.ws/bugs/], [sudo])AC_INIT([sudo], [1.8.5p1], [http://www.sudo.ws/bugs/], [sudo])
 AC_CONFIG_HEADER([config.h pathnames.h])  AC_CONFIG_HEADER([config.h pathnames.h])
 dnl  dnl
 dnl Note: this must come after AC_INIT  dnl Note: this must come after AC_INIT
Line 38  AC_SUBST([MAN_POSTINSTALL]) Line 38  AC_SUBST([MAN_POSTINSTALL])
 AC_SUBST([SUDOERS_MODE])  AC_SUBST([SUDOERS_MODE])
 AC_SUBST([SUDOERS_UID])  AC_SUBST([SUDOERS_UID])
 AC_SUBST([SUDOERS_GID])  AC_SUBST([SUDOERS_GID])
AC_SUBST([DEV])AC_SUBST([DEVEL])
 AC_SUBST([BAMAN])  AC_SUBST([BAMAN])
 AC_SUBST([LCMAN])  AC_SUBST([LCMAN])
 AC_SUBST([SEMAN])  AC_SUBST([SEMAN])
Line 66  AC_SUBST([LIBDL]) Line 66  AC_SUBST([LIBDL])
 AC_SUBST([LT_STATIC])  AC_SUBST([LT_STATIC])
 AC_SUBST([LIBINTL])  AC_SUBST([LIBINTL])
 AC_SUBST([SUDO_NLS])  AC_SUBST([SUDO_NLS])
   AC_SUBST([COMPAT_TEST_PROGS])
 dnl  dnl
 dnl Variables that get substituted in docs (not overridden by environment)  dnl Variables that get substituted in docs (not overridden by environment)
 dnl  dnl
Line 158  PROGS="sudo" Line 159  PROGS="sudo"
 : ${SUDOERS_MODE='0440'}  : ${SUDOERS_MODE='0440'}
 : ${SUDOERS_UID='0'}  : ${SUDOERS_UID='0'}
 : ${SUDOERS_GID='0'}  : ${SUDOERS_GID='0'}
DEV="#"DEVEL=
 LDAP="#"  LDAP="#"
 BAMAN=0  BAMAN=0
 LCMAN=0  LCMAN=0
Line 184  shadow_libs_optional= Line 185  shadow_libs_optional=
 CONFIGURE_ARGS="$@"  CONFIGURE_ARGS="$@"
   
 dnl  dnl
   dnl LD_PRELOAD equivalents
   dnl
   RTLD_PRELOAD_VAR="LD_PRELOAD"
   RTLD_PRELOAD_ENABLE_VAR=
   RTLD_PRELOAD_DELIM=":"
   RTLD_PRELOAD_DEFAULT=
   
   dnl
 dnl libc replacement functions live in compat  dnl libc replacement functions live in compat
 dnl  dnl
 AC_CONFIG_LIBOBJ_DIR(compat)  AC_CONFIG_LIBOBJ_DIR(compat)
Line 214  AC_ARG_WITH(devel, [AS_HELP_STRING([--with-devel], [ad Line 223  AC_ARG_WITH(devel, [AS_HELP_STRING([--with-devel], [ad
 [case $with_devel in  [case $with_devel in
     yes)        AC_MSG_NOTICE([Setting up for development: -Wall, flex, yacc])      yes)        AC_MSG_NOTICE([Setting up for development: -Wall, flex, yacc])
                 OSDEFS="${OSDEFS} -DSUDO_DEVEL"                  OSDEFS="${OSDEFS} -DSUDO_DEVEL"
                DEV=""                DEVEL="true"
                 devdir=.                  devdir=.
                 ;;                  ;;
     no)         ;;      no)         ;;
Line 402  AC_ARG_WITH(fwtk, [AS_HELP_STRING([--with-fwtk[[=DIR]] Line 411  AC_ARG_WITH(fwtk, [AS_HELP_STRING([--with-fwtk[[=DIR]]
                 ;;                  ;;
 esac])  esac])
   
 AC_ARG_WITH(kerb4, [AS_HELP_STRING([--with-kerb4[[=DIR]]], [enable Kerberos IV support])],  
 [case $with_kerb4 in  
     no)         ;;  
     *)          AC_MSG_CHECKING(whether to try kerberos IV authentication)  
                 AC_MSG_RESULT(yes)  
                 AUTH_REG="$AUTH_REG kerb4"  
                 ;;  
 esac])  
   
 AC_ARG_WITH(kerb5, [AS_HELP_STRING([--with-kerb5[[=DIR]]], [enable Kerberos V support])],  AC_ARG_WITH(kerb5, [AS_HELP_STRING([--with-kerb5[[=DIR]]], [enable Kerberos V support])],
 [case $with_kerb5 in  [case $with_kerb5 in
     no)         ;;      no)         ;;
Line 1281  AC_ARG_ENABLE(env_reset, Line 1281  AC_ARG_ENABLE(env_reset,
 ])  ])
 if test "$env_reset" = "on"; then  if test "$env_reset" = "on"; then
     AC_MSG_RESULT(yes)      AC_MSG_RESULT(yes)
    AC_DEFINE(ENV_RESET, TRUE)    AC_DEFINE(ENV_RESET, 1)
 else  else
     AC_MSG_RESULT(no)      AC_MSG_RESULT(no)
    AC_DEFINE(ENV_RESET, FALSE)    AC_DEFINE(ENV_RESET, 0)
 fi  fi
   
 AC_ARG_ENABLE(warnings,  AC_ARG_ENABLE(warnings,
Line 1385  if test "$enable_shared" = "no"; then Line 1385  if test "$enable_shared" = "no"; then
     enable_dlopen=no      enable_dlopen=no
     lt_cv_dlopen=none      lt_cv_dlopen=none
     lt_cv_dlopen_libs=      lt_cv_dlopen_libs=
       ac_cv_func_dlopen=no
 else  else
     eval _shrext="$shrext_cmds"      eval _shrext="$shrext_cmds"
     # Darwin uses .dylib for libraries but .so for modules      # Darwin uses .dylib for libraries but .so for modules
Line 1472  fi Line 1473  fi
   
 case "$host" in  case "$host" in
     *-*-sunos4*)      *-*-sunos4*)
                   # LD_PRELOAD is space-delimited
                   RTLD_PRELOAD_DELIM=" "
   
                 # getcwd(3) opens a pipe to getpwd(1)!?!                  # getcwd(3) opens a pipe to getpwd(1)!?!
                 BROKEN_GETCWD=1                  BROKEN_GETCWD=1
   
Line 1483  case "$host" in Line 1487  case "$host" in
                 shadow_funcs="getpwanam issecure"                  shadow_funcs="getpwanam issecure"
                 ;;                  ;;
     *-*-solaris2*)      *-*-solaris2*)
                   # LD_PRELOAD is space-delimited
                   RTLD_PRELOAD_DELIM=" "
   
                 # To get the crypt(3) prototype (so we pass -Wall)                  # To get the crypt(3) prototype (so we pass -Wall)
                 OSDEFS="${OSDEFS} -D__EXTENSIONS__"                  OSDEFS="${OSDEFS} -D__EXTENSIONS__"
                 # AFS support needs -lucb                  # AFS support needs -lucb
Line 1545  case "$host" in Line 1552  case "$host" in
                 # LDR_PRELOAD is only supported in AIX 5.3 and later                  # LDR_PRELOAD is only supported in AIX 5.3 and later
                 if test $OSMAJOR -lt 5; then                  if test $OSMAJOR -lt 5; then
                     with_noexec=no                      with_noexec=no
                   else
                       RTLD_PRELOAD_VAR="LDR_PRELOAD"
                 fi                  fi
   
                 # AIX-specific functions                  # AIX-specific functions
Line 1678  case "$host" in Line 1687  case "$host" in
                 ]], [[exit(0);]])], [AC_MSG_RESULT(no)], [AC_MSG_RESULT([yes, fixing locally])                  ]], [[exit(0);]])], [AC_MSG_RESULT(no)], [AC_MSG_RESULT([yes, fixing locally])
                 sed 's:<acl.h>:<sys/acl.h>:g' < /usr/include/prot.h > prot.h                  sed 's:<acl.h>:<sys/acl.h>:g' < /usr/include/prot.h > prot.h
                 ])                  ])
                   # ":DEFAULT" must be appended to _RLD_LIST
                   RTLD_PRELOAD_VAR="_RLD_LIST"
                   RTLD_PRELOAD_DEFAULT="DEFAULT"
                 : ${mansectsu='8'}                  : ${mansectsu='8'}
                 : ${mansectform='4'}                  : ${mansectform='4'}
                 ;;                  ;;
Line 1705  case "$host" in Line 1717  case "$host" in
                 if test "$OSMAJOR" -le 4; then                  if test "$OSMAJOR" -le 4; then
                     AC_CHECK_LIB(sun, getpwnam, [LIBS="${LIBS} -lsun"])                      AC_CHECK_LIB(sun, getpwnam, [LIBS="${LIBS} -lsun"])
                 fi                  fi
                   # ":DEFAULT" must be appended to _RLD_LIST
                   RTLD_PRELOAD_VAR="_RLD_LIST"
                   RTLD_PRELOAD_DEFAULT="DEFAULT"
                 : ${mansectsu='1m'}                  : ${mansectsu='1m'}
                 : ${mansectform='4'}                  : ${mansectform='4'}
                 ;;                  ;;
Line 1847  case "$host" in Line 1862  case "$host" in
                 CHECKSHADOW="false"                  CHECKSHADOW="false"
                 test -z "$with_pam" && AUTH_EXCL_DEF="PAM"                  test -z "$with_pam" && AUTH_EXCL_DEF="PAM"
                 : ${with_logincap='yes'}                  : ${with_logincap='yes'}
                   RTLD_PRELOAD_VAR="DYLD_INSERT_LIBRARIES"
                   RTLD_PRELOAD_ENABLE_VAR="DYLD_FORCE_FLAT_NAMESPACE"
                 ;;                  ;;
     *-*-nextstep*)      *-*-nextstep*)
                 # lockf() on is broken on the NeXT -- use flock instead                  # lockf() on is broken on the NeXT -- use flock instead
                 ac_cv_func_lockf=no                  ac_cv_func_lockf=no
                 ac_cv_func_flock=yes                  ac_cv_func_flock=yes
                   RTLD_PRELOAD_VAR="DYLD_INSERT_LIBRARIES"
                   RTLD_PRELOAD_ENABLE_VAR="DYLD_FORCE_FLAT_NAMESPACE"
                 ;;                  ;;
     *-*-*sysv4*)      *-*-*sysv4*)
                 : ${mansectsu='1m'}                  : ${mansectsu='1m'}
Line 1868  case "$host" in Line 1887  case "$host" in
 esac  esac
   
 dnl  dnl
   dnl Library preloading to support NOEXEC
   dnl
   if test -n "$with_noexec"; then
       SUDO_DEFINE_UNQUOTED(RTLD_PRELOAD_VAR, "$RTLD_PRELOAD_VAR")
       SUDO_DEFINE_UNQUOTED(RTLD_PRELOAD_DELIM, "$RTLD_PRELOAD_DELIM")
       if test -n "$RTLD_PRELOAD_DEFAULT"; then
           SUDO_DEFINE_UNQUOTED(RTLD_PRELOAD_DEFAULT, "$RTLD_PRELOAD_DEFAULT")
       fi
       if test -n "$RTLD_PRELOAD_ENABLE_VAR"; then
           SUDO_DEFINE_UNQUOTED(RTLD_PRELOAD_ENABLE_VAR, "$RTLD_PRELOAD_ENABLE_VAR")
       fi
   fi
   
   dnl
 dnl Check for mixing mutually exclusive and regular auth methods  dnl Check for mixing mutually exclusive and regular auth methods
 dnl  dnl
 AUTH_REG=${AUTH_REG# }  AUTH_REG=${AUTH_REG# }
Line 1920  dnl Line 1953  dnl
 AC_PROG_GCC_TRADITIONAL  AC_PROG_GCC_TRADITIONAL
 AC_C_CONST  AC_C_CONST
 AC_C_VOLATILE  AC_C_VOLATILE
   # Check for variadic macro support in cpp
   AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
   AC_INCLUDES_DEFAULT
   #if defined(__GNUC__) && __GNUC__ == 2
   # define sudo_fprintf(fp, fmt...) fprintf((fp), (fmt))
   #else
   # define sudo_fprintf(fp, ...) fprintf((fp), __VA_ARGS__)
   #endif
   ], [sudo_fprintf(stderr, "a %s", "test");])], [], [AC_MSG_ERROR([Your C compiler doesn't support variadic macros, try building with gcc instead])])
 if test X"$with_gnu_ld" != "yes" -a -n "$GCC"; then  if test X"$with_gnu_ld" != "yes" -a -n "$GCC"; then
     _CFLAGS="$CFLAGS"      _CFLAGS="$CFLAGS"
     CFLAGS="$CFLAGS -static-libgcc"      CFLAGS="$CFLAGS -static-libgcc"
Line 1963  dnl Line 2005  dnl
 AC_HEADER_STDC  AC_HEADER_STDC
 AC_HEADER_DIRENT  AC_HEADER_DIRENT
 AC_HEADER_TIME  AC_HEADER_TIME
AC_CHECK_HEADERS(malloc.h paths.h utime.h netgroup.h utmpx.h sys/sockio.h sys/bsdtypes.h sys/select.h sys/stropts.h sys/sysmacros.h)AC_HEADER_STDBOOL
 AC_HEADER_MAJOR
 AC_CHECK_HEADERS(malloc.h netgroup.h paths.h spawn.h utime.h utmpx.h sys/sockio.h sys/bsdtypes.h sys/select.h sys/stropts.h sys/sysmacros.h)
 AC_CHECK_HEADERS([procfs.h] [sys/procfs.h], [AC_CHECK_MEMBERS(struct psinfo.pr_ttydev, [AC_CHECK_FUNCS(_ttyname_dev)], [], [AC_INCLUDES_DEFAULT
 #ifdef HAVE_PROCFS_H
 #include <procfs.h>
 #endif
 #ifdef HAVE_SYS_PROCFS_H
 #include <sys/procfs.h>
 #endif
 ])]
 break)
 dnl  dnl
 dnl Check for large file support.  HP-UX 11.23 has a broken sys/type.h  dnl Check for large file support.  HP-UX 11.23 has a broken sys/type.h
 dnl when large files support is enabled so work around it.  dnl when large files support is enabled so work around it.
Line 2016  AC_TYPE_UID_T Line 2069  AC_TYPE_UID_T
 AC_CHECK_TYPE([__signed char], [], [AC_CHECK_TYPE([signed char], [AC_DEFINE(__signed, signed)], [AC_DEFINE(__signed, [])])])  AC_CHECK_TYPE([__signed char], [], [AC_CHECK_TYPE([signed char], [AC_DEFINE(__signed, signed)], [AC_DEFINE(__signed, [])])])
 AC_CHECK_TYPE([sig_atomic_t], [], [AC_DEFINE(sig_atomic_t, int)], [#include <sys/types.h>  AC_CHECK_TYPE([sig_atomic_t], [], [AC_DEFINE(sig_atomic_t, int)], [#include <sys/types.h>
 #include <signal.h>])  #include <signal.h>])
AC_CHECK_TYPES([sigaction_t], [AC_DEFINE(HAVE_SIGACTION_T)], [], [#include <sys/types.h>AC_CHECK_TYPES([sigaction_t], [], [], [#include <sys/types.h>
 #include <signal.h>])  #include <signal.h>])
AC_CHECK_TYPE([struct timespec], [AC_DEFINE(HAVE_TIMESPEC)], [], [#include <sys/types.h>AC_CHECK_TYPES([struct timespec], [], [], [#include <sys/types.h>
 #if TIME_WITH_SYS_TIME  #if TIME_WITH_SYS_TIME
 # include <sys/time.h>  # include <sys/time.h>
 #endif  #endif
 #include <time.h>])  #include <time.h>])
AC_CHECK_TYPES([struct in6_addr], [AC_DEFINE(HAVE_IN6_ADDR)], [], [#include <sys/types.h>AC_CHECK_TYPES([struct in6_addr], [], [], [#include <sys/types.h>
 #include <netinet/in.h>])  #include <netinet/in.h>])
 AC_TYPE_LONG_LONG_INT  AC_TYPE_LONG_LONG_INT
 AC_CHECK_SIZEOF([long int])  AC_CHECK_SIZEOF([long int])
SUDO_TYPE_SIZE_TAC_CHECK_TYPE(size_t, unsigned int)
SUDO_TYPE_SSIZE_TAC_CHECK_TYPE(ssize_t, int)
SUDO_TYPE_DEV_TAC_CHECK_TYPE(dev_t, int)
SUDO_TYPE_INO_TAC_CHECK_TYPE(ino_t, unsigned int)
 AC_CHECK_TYPE(socklen_t, [], [AC_DEFINE(socklen_t, unsigned int)], [
 AC_INCLUDES_DEFAULT
 #include <sys/socket.h>])
 SUDO_UID_T_LEN  SUDO_UID_T_LEN
 SUDO_SOCK_SA_LEN  SUDO_SOCK_SA_LEN
 dnl  dnl
Line 2081  dnl Line 2137  dnl
 dnl Function checks  dnl Function checks
 dnl  dnl
 AC_FUNC_GETGROUPS  AC_FUNC_GETGROUPS
AC_CHECK_FUNCS(strrchr sysconf tzset strftime \AC_CHECK_FUNCS(glob strrchr sysconf tzset strftime setenv \
               regcomp setlocale nl_langinfo getaddrinfo mbr_check_membership \               regcomp setlocale nl_langinfo mbr_check_membership \
               setrlimit64 sysctl)               setrlimit64)
 AC_REPLACE_FUNCS(getgrouplist)  AC_REPLACE_FUNCS(getgrouplist)
 AC_CHECK_FUNCS(getline, [], [  AC_CHECK_FUNCS(getline, [], [
     AC_LIBOBJ(getline)      AC_LIBOBJ(getline)
     AC_CHECK_FUNCS(fgetln)      AC_CHECK_FUNCS(fgetln)
 ])  ])
   dnl
   dnl If libc supports _FORTIFY_SOURCE check functions, use it.
   dnl
   O_CPPFLAGS="$CPPFLAGS"
   CPPFLAGS="$CPPFLAGS -D_FORTIFY_SOURCE=2"
   AC_CHECK_FUNC(__sprintf_chk, [
       AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[char buf[4]; (void)sprintf(buf, "%s", "foo");]])], [OSDEFS="${OSDEFS} -D_FORTIFY_SOURCE=2"], [])
   ], [])
   CPPFLAGS="$O_CPPFLAGS"
   
 utmp_style=LEGACY  utmp_style=LEGACY
 AC_CHECK_FUNCS(getutxid getutid, [utmp_style=POSIX; break])  AC_CHECK_FUNCS(getutxid getutid, [utmp_style=POSIX; break])
 if test "$utmp_style" = "LEGACY"; then  if test "$utmp_style" = "LEGACY"; then
     AC_CHECK_FUNCS(getttyent ttyslot, [break])      AC_CHECK_FUNCS(getttyent ttyslot, [break])
 fi  fi
   
   AC_CHECK_FUNCS(sysctl, [AC_CHECK_MEMBERS([struct kinfo_proc.ki_tdev], [],
       [
           AC_CHECK_MEMBERS([struct kinfo_proc2.p_tdev], [], [
               AC_CHECK_MEMBERS([struct kinfo_proc.p_tdev], [], [
                   AC_CHECK_MEMBERS([struct kinfo_proc.kp_eproc.e_tdev], [], [], [
                       #include <sys/param.h>
                       #include <sys/sysctl.h>
                   ])
               ], [
                   #include <sys/param.h>
                   #include <sys/sysctl.h>
               ])
           ],
           [
               #include <sys/param.h>
               #include <sys/sysctl.h>
           ])
       ],
       [
           #include <sys/param.h>
           #include <sys/sysctl.h>
           #include <sys/user.h>
       ])
   ])
   
 AC_CHECK_FUNCS(openpty, [AC_CHECK_HEADERS(libutil.h util.h pty.h, [break])], [  AC_CHECK_FUNCS(openpty, [AC_CHECK_HEADERS(libutil.h util.h pty.h, [break])], [
     AC_CHECK_LIB(util, openpty, [      AC_CHECK_LIB(util, openpty, [
         AC_CHECK_HEADERS(libutil.h util.h pty.h, [break])          AC_CHECK_HEADERS(libutil.h util.h pty.h, [break])
Line 2113  AC_CHECK_FUNCS(openpty, [AC_CHECK_HEADERS(libutil.h ut Line 2204  AC_CHECK_FUNCS(openpty, [AC_CHECK_HEADERS(libutil.h ut
         ])          ])
     ])      ])
 ])  ])
AC_CHECK_FUNCS(unsetenv, [SUDO_FUNC_UNSETENV_VOID], [AC_LIBOBJ(unsetenv)])AC_CHECK_FUNCS(unsetenv, [SUDO_FUNC_UNSETENV_VOID], [])
 SUDO_FUNC_PUTENV_CONST
 if test -z "$SKIP_SETRESUID"; then  if test -z "$SKIP_SETRESUID"; then
     AC_CHECK_FUNCS(setresuid, [      AC_CHECK_FUNCS(setresuid, [
         SKIP_SETREUID=yes          SKIP_SETREUID=yes
Line 2132  fi Line 2224  fi
 if test -z "$BROKEN_GETCWD"; then  if test -z "$BROKEN_GETCWD"; then
     AC_REPLACE_FUNCS(getcwd)      AC_REPLACE_FUNCS(getcwd)
 fi  fi
 AC_CHECK_FUNCS(glob, [AC_MSG_CHECKING(for GLOB_BRACE and GLOB_TILDE in glob.h)  
 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <glob.h>]], [[int i = GLOB_BRACE | GLOB_TILDE; (void)i;]])], [AC_DEFINE(HAVE_EXTENDED_GLOB)  
     AC_MSG_RESULT(yes)], [AC_LIBOBJ(glob)  
     AC_MSG_RESULT(no)])], [AC_LIBOBJ(glob)])  
 AC_CHECK_FUNCS(lockf flock, [break])  AC_CHECK_FUNCS(lockf flock, [break])
 AC_CHECK_FUNCS(innetgr _innetgr, [AC_CHECK_FUNCS(getdomainname) [break]])  AC_CHECK_FUNCS(innetgr _innetgr, [AC_CHECK_FUNCS(getdomainname) [break]])
 AC_CHECK_FUNCS(utimes, [AC_CHECK_FUNCS(futimes futimesat, [break])], [AC_CHECK_FUNCS(futime) AC_LIBOBJ(utimes)])  AC_CHECK_FUNCS(utimes, [AC_CHECK_FUNCS(futimes futimesat, [break])], [AC_CHECK_FUNCS(futime) AC_LIBOBJ(utimes)])
 AC_CHECK_FUNCS(killpg, [], [AC_LIBOBJ(killpg)])  AC_CHECK_FUNCS(killpg, [], [AC_LIBOBJ(killpg)])
SUDO_FUNC_FNMATCH([AC_DEFINE(HAVE_FNMATCH)], [AC_LIBOBJ(fnmatch)])SUDO_FUNC_FNMATCH([AC_DEFINE(HAVE_FNMATCH)], [AC_LIBOBJ(fnmatch)
     COMPAT_TEST_PROGS="${COMPAT_TEST_PROGS}${COMPAT_TEST_PROGS+ }fnm_test"
 ])
 SUDO_FUNC_ISBLANK  SUDO_FUNC_ISBLANK
AC_REPLACE_FUNCS(memrchr strlcpy strlcat setenv)AC_REPLACE_FUNCS(memrchr pw_dup strlcpy strlcat)
 AC_CHECK_FUNCS(nanosleep, [], [  AC_CHECK_FUNCS(nanosleep, [], [
     # On Solaris, nanosleep is in librt      # On Solaris, nanosleep is in librt
     AC_CHECK_LIB(rt, nanosleep, [REPLAY_LIBS="${REPLAY_LIBS} -lrt"], [AC_LIBOBJ(nanosleep)])      AC_CHECK_LIB(rt, nanosleep, [REPLAY_LIBS="${REPLAY_LIBS} -lrt"], [AC_LIBOBJ(nanosleep)])
Line 2168  dnl Line 2258  dnl
 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>  AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
 #include <$ac_header_dirent>]], [[DIR *d; (void)dirfd(d);]])], [AC_DEFINE(HAVE_DIRFD)], [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>  #include <$ac_header_dirent>]], [[DIR *d; (void)dirfd(d);]])], [AC_DEFINE(HAVE_DIRFD)], [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
 #include <$ac_header_dirent>]], [[DIR d; memset(&d, 0, sizeof(d)); return(d.dd_fd);]])], [AC_DEFINE(HAVE_DD_FD)], [])])  #include <$ac_header_dirent>]], [[DIR d; memset(&d, 0, sizeof(d)); return(d.dd_fd);]])], [AC_DEFINE(HAVE_DD_FD)], [])])
   AC_CHECK_MEMBERS([struct dirent.d_type], [], [], [
   AC_INCLUDES_DEFAULT
   #include <$ac_header_dirent>
   ])
 dnl  dnl
 dnl If NEED_SNPRINTF is set, add snprintf.c to LIBOBJS  dnl If NEED_SNPRINTF is set, add snprintf.c to LIBOBJS
 dnl (it contains snprintf, vsnprintf, asprintf, and vasprintf)  dnl (it contains snprintf, vsnprintf, asprintf, and vasprintf)
Line 2178  fi Line 2272  fi
 dnl  dnl
 dnl If socket(2) not in libc, check -lsocket and -linet  dnl If socket(2) not in libc, check -lsocket and -linet
 dnl May need to link with *both* -lnsl and -lsocket due to unresolved symbols  dnl May need to link with *both* -lnsl and -lsocket due to unresolved symbols
 dnl In this case we look for main(), not socket() to avoid using a cached value  
 dnl  dnl
AC_CHECK_FUNC(socket, , [AC_CHECK_LIB(socket, socket, [NET_LIBS="${NET_LIBS} -lsocket"; LIBS="${LIBS} -lsocket"], AC_CHECK_LIB(inet, socket, [NET_LIBS="${NET_LIBS} -linet"; LIBS="${LIBS} -linet"], AC_MSG_WARN(unable to find socket() trying -lsocket -lnsl)AC_CHECK_FUNC(socket, [], [
AC_CHECK_LIB(socket, socket, [NET_LIBS="${NET_LIBS} -lsocket -lnsl"; LIBS="${LIBS} -lsocket -lnsl"], , -lnsl)))])    for libs in "-lsocket" "-linet" "-lsocket -lnsl"; do
         _libs=
         for lib in $libs; do
             case "$NET_LIBS" in
                 *"$lib"*)   ;;
                 *)          _libs="$_libs $lib";;
             esac
         done
         libs="${_libs# }"
         test -z "$libs" && continue
         lib="`echo \"$libs\"|sed -e 's/^-l//' -e 's/ .*$//'`"
         extralibs="`echo \"$libs\"|sed 's/^-l[[^ ]]*//'`"
         SUDO_CHECK_LIB($lib, socket, [NET_LIBS="${NET_LIBS} $libs"; LIBS="${LIBS} $libs"; break], [], [$extralibs])
     done
 ])
 dnl  dnl
 dnl If inet_addr(3) not in libc, check -lnsl and -linet  dnl If inet_addr(3) not in libc, check -lnsl and -linet
 dnl May need to link with *both* -lnsl and -lsocket due to unresolved symbols  dnl May need to link with *both* -lnsl and -lsocket due to unresolved symbols
 dnl  dnl
AC_CHECK_FUNC(inet_addr, , [AC_CHECK_FUNC(__inet_addr, , AC_CHECK_LIB(nsl, inet_addr, [NET_LIBS="${NET_LIBS} -lnsl"; LIBS="${LIBS} -lnsl"], AC_CHECK_LIB(inet, inet_addr, [NET_LIBS="${NET_LIBS} -linet"; LIBS="${LIBS} -linet"], AC_MSG_WARN(unable to find inet_addr() trying -lsocket -lnsl)AC_CHECK_FUNC(inet_addr, [], [
AC_CHECK_LIB(socket, inet_addr, [NET_LIBS="${NET_LIBS} -lsocket -lnsl"; LIBS="${LIBS} -lsocket -lnsl"], , -lnsl))))])    AC_CHECK_FUNC(__inet_addr, [], [
         for libs in "-lsocket" "-linet" "-lsocket -lnsl"; do
             _libs=
             for lib in $libs; do
                 case "$NET_LIBS" in
                     *"$lib"*)   ;;
                     *)          _libs="$_libs $lib";;
                 esac
             done
             libs="${_libs# }"
             test -z "$libs" && continue
             lib="`echo \"$libs\"|sed -e 's/^-l//' -e 's/ .*$//'`"
             extralibs="`echo \"$libs\"|sed 's/^-l[[^ ]]*//'`"
             SUDO_CHECK_LIB($lib, inet_addr, [NET_LIBS="${NET_LIBS} $libs"; LIBS="${LIBS} $libs"; break], [], [$extralibs])
         done
     ])
 ])
 dnl  dnl
 dnl If syslog(3) not in libc, check -lsocket, -lnsl and -linet  dnl If syslog(3) not in libc, check -lsocket, -lnsl and -linet
 dnl  dnl
AC_CHECK_FUNC(syslog, , [AC_CHECK_LIB(socket, syslog, [NET_LIBS="${NET_LIBS} -lsocket"; LIBS="${LIBS} -lsocket"], AC_CHECK_LIB(nsl, syslog, [NET_LIBS="${NET_LIBS} -lnsl"; LIBS="${LIBS} -lnsl"], AC_CHECK_LIB(inet, syslog, [NET_LIBS="${NET_LIBS} -linet"; LIBS="${LIBS} -linet"])))])AC_CHECK_FUNC(syslog, [], [
     for libs in "-lsocket" "-linet" "-lsocket -lnsl"; do
         _libs=
         for lib in $libs; do
             case "$NET_LIBS" in
                 *"$lib"*)   ;;
                 *)          _libs="$_libs $lib";;
             esac
         done
         libs="${_libs# }"
         test -z "$libs" && continue
         lib="`echo \"$libs\"|sed -e 's/^-l//' -e 's/ .*$//'`"
         extralibs="`echo \"$libs\"|sed 's/^-l[[^ ]]*//'`"
         SUDO_CHECK_LIB($lib, syslog, [NET_LIBS="${NET_LIBS} $libs"; LIBS="${LIBS} $libs"; break], [], [$extralibs])
     done
 ])
 dnl  dnl
   dnl If getaddrinfo(3) not in libc, check -lsocket and -linet
   dnl May need to link with *both* -lnsl and -lsocket due to unresolved symbols.
   dnl
   AC_CHECK_FUNCS(getaddrinfo, [], [
       found=no
       for libs in "-lsocket" "-linet" "-lsocket -lnsl"; do
           _libs=
           for lib in $libs; do
               case "$NET_LIBS" in
                   *"$lib"*)   ;;
                   *)          _libs="$_libs $lib";;
               esac
           done
           libs="${_libs# }"
           test -z "$libs" && continue
           lib="`echo \"$libs\"|sed -e 's/^-l//' -e 's/ .*$//'`"
           extralibs="`echo \"$libs\"|sed 's/^-l[[^ ]]*//'`"
           SUDO_CHECK_LIB($lib, getaddrinfo, [NET_LIBS="${NET_LIBS} $libs"; LIBS="${LIBS} $libs"; found=yes; break], [], [$extralibs])
       done
       if test X"$found" != X"no"; then
           AC_DEFINE(HAVE_GETADDRINFO)
       fi
   ])
   dnl
 dnl Check for getprogname() or __progname  dnl Check for getprogname() or __progname
 dnl  dnl
 AC_CHECK_FUNCS(getprogname, , [  AC_CHECK_FUNCS(getprogname, , [
Line 2206  AC_CHECK_FUNCS(getprogname, , [ Line 2368  AC_CHECK_FUNCS(getprogname, , [
     fi      fi
     AC_MSG_RESULT($sudo_cv___progname)      AC_MSG_RESULT($sudo_cv___progname)
 ])  ])
   dnl
   dnl Check for __func__ or __FUNCTION__
   dnl
   AC_MSG_CHECKING([for __func__])
   AC_CACHE_VAL(sudo_cv___func__, [
   AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[(void)puts(__func__);]])], [sudo_cv___func__=yes], [sudo_cv___func__=no])])
   AC_MSG_RESULT($sudo_cv___func__)
   if test "$sudo_cv___func__" = "yes"; then
       AC_DEFINE(HAVE___FUNC__)
   elif test -n "$GCC"; then
       AC_MSG_CHECKING([for __FUNCTION__])
       AC_CACHE_VAL(sudo_cv___FUNCTION__, [
       AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[(void)puts(__FUNCTION__);]])], [sudo_cv___FUNCTION__=yes], [sudo_cv___FUNCTION__=no])])
       AC_MSG_RESULT($sudo_cv___FUNCTION__)
       if test "$sudo_cv___FUNCTION__" = "yes"; then
           AC_DEFINE(HAVE___FUNC__)
           AC_DEFINE(__func__, __FUNCTION__, [Define to __FUNCTION__ if your compiler support __FUNCTION__ but not __func__])
       fi
   fi
   
 # gettext() and friends may be located in libc (Linux and Solaris)  # gettext() and friends may be located in libc (Linux and Solaris)
 # or in libintl.  However, it is possible to have libintl installed  # or in libintl.  However, it is possible to have libintl installed
Line 2262  fi Line 2443  fi
 dnl  dnl
 dnl Deferred zlib option processing.  dnl Deferred zlib option processing.
 dnl By default we use the system zlib if it is present.  dnl By default we use the system zlib if it is present.
   dnl If a directory was specified for zlib (or we are use sudo's version),
   dnl prepend the include dir to make sure we get the right zlib header.
 dnl  dnl
 case "$enable_zlib" in  case "$enable_zlib" in
     yes)      yes)
Line 2280  case "$enable_zlib" in Line 2463  case "$enable_zlib" in
         ;;          ;;
     *)      *)
         AC_DEFINE(HAVE_ZLIB_H)          AC_DEFINE(HAVE_ZLIB_H)
        CPPFLAGS="${CPPFLAGS} -I${enable_zlib}/include"        CPPFLAGS="-I${enable_zlib}/include ${CPPFLAGS}"
         SUDO_APPEND_LIBPATH(ZLIB, [$enable_zlib/lib])          SUDO_APPEND_LIBPATH(ZLIB, [$enable_zlib/lib])
         ZLIB="${ZLIB} -lz"          ZLIB="${ZLIB} -lz"
         ;;          ;;
 esac  esac
 if test X"$enable_zlib" = X"builtin"; then  if test X"$enable_zlib" = X"builtin"; then
     AC_DEFINE(HAVE_ZLIB_H)      AC_DEFINE(HAVE_ZLIB_H)
    CPPFLAGS="${CPPFLAGS}"' -I$(top_srcdir)/zlib'    CPPFLAGS='-I$(top_builddir)/zlib -I$(top_srcdir)/zlib '"${CPPFLAGS}"
     ZLIB="${ZLIB}"' $(top_builddir)/zlib/libz.la'      ZLIB="${ZLIB}"' $(top_builddir)/zlib/libz.la'
     ZLIB_SRC=zlib      ZLIB_SRC=zlib
     AC_CONFIG_HEADER([zlib/zconf.h])      AC_CONFIG_HEADER([zlib/zconf.h])
Line 2303  AC_INCLUDES_DEFAULT Line 2486  AC_INCLUDES_DEFAULT
 ])  ])
   
 dnl  dnl
   dnl Check for h_errno declaration in netdb.h
   dnl
   AC_CHECK_DECLS([h_errno], [], [], [
   AC_INCLUDES_DEFAULT
   #include <netdb.h>
   ])
   
   dnl
 dnl Check for strsignal() or sys_siglist  dnl Check for strsignal() or sys_siglist
 dnl  dnl
 AC_CHECK_FUNCS(strsignal, [], [  AC_CHECK_FUNCS(strsignal, [], [
Line 2356  dnl PAM support.  Systems that use PAM by default set  Line 2547  dnl PAM support.  Systems that use PAM by default set 
 dnl and we do the actual tests here.  dnl and we do the actual tests here.
 dnl  dnl
 if test ${with_pam-"no"} != "no"; then  if test ${with_pam-"no"} != "no"; then
    # We already link with -ldl (see LIBDL below) so no need for that here.    #
    SUDOERS_LIBS="${SUDOERS_LIBS} -lpam"    # Check for pam_start() in libpam first, then for pam_appl.h.
     #
     found_pam_lib=no
     AC_CHECK_LIB(pam, pam_start, [found_pam_lib=yes], [], [$lt_cv_dlopen_libs])
     #
     # Some PAM implementations (MacOS X for example) put the PAM headers
     # in /usr/include/pam instead of /usr/include/security...
     #
     found_pam_hdrs=no
     AC_CHECK_HEADERS([security/pam_appl.h] [pam/pam_appl.h], [found_pam_hdrs=yes; break])
     if test "$found_pam_lib" = "yes" -a "$found_pam_hdrs" = "yes"; then
         # Found both PAM libs and headers
         with_pam=yes
     elif test "$with_pam" = "yes"; then
         if test "$found_pam_lib" = "no"; then
             AC_MSG_ERROR(["--with-pam specified but unable to locate PAM development library."])
         fi
         if test "$found_pam_hdrs" = "no"; then
             AC_MSG_ERROR(["--with-pam specified but unable to locate PAM development headers."])
         fi
     elif test "$found_pam_lib" != "$found_pam_hdrs"; then
         if test "$found_pam_lib" = "no"; then
             AC_MSG_ERROR(["found PAM headers but no PAM development library; specify --without-pam to build without PAM"])
         fi
         if test "$found_pam_hdrs" = "no"; then
             AC_MSG_ERROR(["found PAM library but no PAM development headers; specify --without-pam to build without PAM"])
         fi
     fi
   
     dnl  
     dnl Some PAM implementations (MacOS X for example) put the PAM headers  
     dnl in /usr/include/pam instead of /usr/include/security...  
     dnl  
     AC_CHECK_HEADERS([security/pam_appl.h] [pam/pam_appl.h], [with_pam=yes; break])  
     if test "$with_pam" = "yes"; then      if test "$with_pam" = "yes"; then
           # Older PAM implementations lack pam_getenvlist
           OLIBS="$LIBS"
           LIBS="$LIBS -lpam $lt_cv_dlopen_libs"
           AC_CHECK_FUNCS(pam_getenvlist)
           LIBS="$OLIBS"
   
           # We already link with -ldl if needed (see LIBDL below)
           SUDOERS_LIBS="${SUDOERS_LIBS} -lpam"
         AC_DEFINE(HAVE_PAM)          AC_DEFINE(HAVE_PAM)
         AUTH_OBJS="$AUTH_OBJS pam.lo";          AUTH_OBJS="$AUTH_OBJS pam.lo";
         AUTH_EXCL=PAM          AUTH_EXCL=PAM
Line 2458  if test ${with_SecurID-'no'} != "no"; then Line 2679  if test ${with_SecurID-'no'} != "no"; then
         with_SecurID=/usr/ace          with_SecurID=/usr/ace
     fi      fi
     CPPFLAGS="${CPPFLAGS} -I${with_SecurID}"      CPPFLAGS="${CPPFLAGS} -I${with_SecurID}"
     _LDFLAGS="${LDFLAGS}"  
     SUDO_APPEND_LIBPATH(LDFLAGS, [${with_SecurID}])      SUDO_APPEND_LIBPATH(LDFLAGS, [${with_SecurID}])
    #    SUDOERS_LIBS="${SUDOERS_LIBS} -laceclnt -lpthread"
    # Determine whether to use the new or old SecurID API    AUTH_OBJS="$AUTH_OBJS securid5.lo";
    # 
    AC_CHECK_LIB(aceclnt, SD_Init, 
        [ 
            AUTH_OBJS="$AUTH_OBJS securid5.lo"; 
            SUDOERS_LIBS="${SUDOERS_LIBS} -laceclnt -lpthread" 
        ] 
        [ 
            SUDO_APPEND_LIBPATH(SUDOERS_LDFLAGS, [${with_SecurID}]) 
        ], [ 
            AUTH_OBJS="$AUTH_OBJS securid.lo"; 
            SUDOERS_LIBS="${SUDOERS_LIBS} ${with_SecurID}/sdiclient.a" 
        ], 
        [ 
            -lpthread 
        ] 
    ) 
    LDFLAGS="${_LDFLAGS}" 
 fi  fi
   
 dnl  dnl
Line 2499  if test -z "${AUTH_EXCL}" -a -n "$AUTH_DEF"; then Line 2702  if test -z "${AUTH_EXCL}" -a -n "$AUTH_DEF"; then
 fi  fi
   
 dnl  dnl
 dnl Kerberos IV  
 dnl  
 if test ${with_kerb4-'no'} != "no"; then  
     AC_DEFINE(HAVE_KERB4)  
     dnl  
     dnl Use the specified directory, if any, else search for correct inc dir  
     dnl  
     O_LDFLAGS="$LDFLAGS"  
     if test "$with_kerb4" = "yes"; then  
         found=no  
         O_CPPFLAGS="$CPPFLAGS"  
         for dir in "" "kerberosIV/" "krb4/" "kerberos4/" "kerberosv4/"; do  
             CPPFLAGS="$O_CPPFLAGS -I/usr/include/${dir}"  
             AC_PREPROC_IFELSE([AC_LANG_PROGRAM([[#include <krb.h>]])], [found=yes; break])  
         done  
         test X"$found" = X"no" && CPPFLAGS="$O_CPPFLAGS"  
     else  
         SUDO_APPEND_LIBPATH(LDFLAGS, [${with_kerb4}/lib])  
         SUDO_APPEND_LIBPATH(SUDOERS_LDFLAGS, [${with_kerb4}/lib])  
         CPPFLAGS="$CPPFLAGS -I${with_kerb4}/include"  
         AC_CHECK_HEADER([krb.h], [found=yes], [found=no])  
     fi  
     if test X"$found" = X"no"; then  
         AC_MSG_WARN([Unable to locate Kerberos IV include files, you will have to edit the Makefile and add -I/path/to/krb/includes to CPPFLAGS])  
     fi  
   
     dnl  
     dnl Check for -ldes vs. -ldes425  
     dnl  
     AC_CHECK_LIB(des, des_cbc_encrypt, [K4LIBS="-ldes"], [  
         AC_CHECK_LIB(des425, des_cbc_encrypt, [K4LIBS="-ldes425"], [K4LIBS=""])  
     ])  
     dnl  
     dnl Try to determine whether we have KTH or MIT/CNS Kerberos IV  
     dnl  
     AC_MSG_CHECKING(whether we are using KTH Kerberos IV)  
     AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <krb.h>]], [[const char *tmp = krb4_version;]])], [  
             AC_MSG_RESULT(yes)  
             K4LIBS="${K4LIBS} -lcom_err"  
             AC_CHECK_LIB(roken, main, [K4LIBS="${K4LIBS} -lroken"])  
         ], [  
             AC_MSG_RESULT(no)  
         ]  
     )  
     dnl  
     dnl The actual Kerberos IV lib might be -lkrb or -lkrb4  
     dnl  
     AC_CHECK_LIB(krb, main, [K4LIBS="-lkrb $K4LIBS"], [  
         AC_CHECK_LIB(krb4, main, [K4LIBS="-lkrb4 $K4LIBS"],  
             [K4LIBS="-lkrb $K4LIBS"]  
             [AC_MSG_WARN([Unable to locate Kerberos IV libraries, you will have to edit the Makefile and add -L/path/to/krb/libs to SUDOERS_LDFLAGS and possibly add Kerberos libs to SUDOERS_LIBS])]  
         , [$K4LIBS])  
     ], [$K4LIBS])  
     LDFLAGS="$O_LDFLAGS"  
     SUDOERS_LIBS="${SUDOERS_LIBS} $K4LIBS"  
     AUTH_OBJS="$AUTH_OBJS kerb4.lo"  
 fi  
   
 dnl  
 dnl Kerberos V  dnl Kerberos V
 dnl There is an easy way and a hard way...  dnl There is an easy way and a hard way...
 dnl  dnl
Line 2639  if test ${with_kerb5-'no'} != "no"; then Line 2783  if test ${with_kerb5-'no'} != "no"; then
         AC_DEFINE(HAVE_KRB5_GET_INIT_CREDS_OPT_FREE_TWO_ARGS)          AC_DEFINE(HAVE_KRB5_GET_INIT_CREDS_OPT_FREE_TWO_ARGS)
     fi      fi
     LIBS="$_LIBS"      LIBS="$_LIBS"
       AC_MSG_CHECKING(whether to use an instance name for Kerberos V)
       AC_ARG_ENABLE(kerb5-instance,
       [AS_HELP_STRING([--enable-kerb5-instance], [instance string to append to the username (separated by a slash)])],
           [ case "$enableval" in
               yes)        AC_MSG_ERROR(["must give --enable-kerb5-instance an argument."])
                           ;;
               no)         AC_MSG_RESULT(no)
                           ;;
               *)          SUDO_DEFINE_UNQUOTED(SUDO_KRB5_INSTANCE, "$enableval")
                           AC_MSG_RESULT([$enableval])
                           ;;
           esac], AC_MSG_RESULT(no))
 fi  fi
   
 dnl  dnl
Line 3063  if test X"$with_noexec" != X"no" -o X"$with_selinux" ! Line 3219  if test X"$with_noexec" != X"no" -o X"$with_selinux" !
         PROGS="${PROGS} libsudo_noexec.la"          PROGS="${PROGS} libsudo_noexec.la"
         INSTALL_NOEXEC="install-noexec"          INSTALL_NOEXEC="install-noexec"
   
        eval noexec_file="$with_noexec"        noexec_file="$with_noexec"
         _noexec_file=
         while test X"$noexec_file" != X"$_noexec_file"; do
             _noexec_file="$noexec_file"
             eval noexec_file="$_noexec_file"
         done
         SUDO_DEFINE_UNQUOTED(_PATH_SUDO_NOEXEC, "$noexec_file", [The fully qualified pathname of sudo_noexec.so])          SUDO_DEFINE_UNQUOTED(_PATH_SUDO_NOEXEC, "$noexec_file", [The fully qualified pathname of sudo_noexec.so])
     fi      fi
     if test X"$with_selinux" != X"no"; then      if test X"$with_selinux" != X"no"; then
        eval sesh_file="$libexecdir/sesh"        sesh_file="$libexecdir/sesh"
         _sesh_file=
         while test X"$sesh_file" != X"$_sesh_file"; do
             _sesh_file="$sesh_file"
             eval sesh_file="$_sesh_file"
         done
         SUDO_DEFINE_UNQUOTED(_PATH_SUDO_SESH, "$sesh_file", [The fully qualified pathname of sesh])          SUDO_DEFINE_UNQUOTED(_PATH_SUDO_SESH, "$sesh_file", [The fully qualified pathname of sesh])
     fi      fi
    eval PLUGINDIR="$with_plugindir"    PLUGINDIR="$with_plugindir"
     _PLUGINDIR=
     while test X"$PLUGINDIR" != X"$_PLUGINDIR"; do
         _PLUGINDIR="$PLUGINDIR"
         eval PLUGINDIR="$_PLUGINDIR"
     done
     SUDO_DEFINE_UNQUOTED(_PATH_SUDO_PLUGIN_DIR, "$PLUGINDIR/")      SUDO_DEFINE_UNQUOTED(_PATH_SUDO_PLUGIN_DIR, "$PLUGINDIR/")
     SUDO_DEFINE_UNQUOTED(SUDOERS_PLUGIN, "sudoers${SOEXT}")      SUDO_DEFINE_UNQUOTED(SUDOERS_PLUGIN, "sudoers${SOEXT}")
     exec_prefix="$oexec_prefix"      exec_prefix="$oexec_prefix"
Line 3096  dnl Line 3267  dnl
 dnl Substitute into the Makefile and man pages  dnl Substitute into the Makefile and man pages
 dnl  dnl
 dnl AC_CONFIG_FILES([doc/sudo.man doc/visudo.man doc/sudoers.man doc/sudoers.ldap.man doc/sudoreplay.man src/Makefile src/sudo_usage.h])  dnl AC_CONFIG_FILES([doc/sudo.man doc/visudo.man doc/sudoers.man doc/sudoers.ldap.man doc/sudoreplay.man src/Makefile src/sudo_usage.h])
AC_CONFIG_FILES([Makefile common/Makefile compat/Makefile doc/Makefile include/Makefile src/sudo_usage.h src/Makefile plugins/sample/Makefile plugins/sample_group/Makefile plugins/sudoers/Makefile plugins/sudoers/sudoers])AC_CONFIG_FILES([Makefile common/Makefile compat/Makefile doc/Makefile include/Makefile src/sudo_usage.h src/Makefile plugins/sample/Makefile plugins/sample_group/Makefile plugins/system_group/Makefile plugins/sudoers/Makefile plugins/sudoers/sudoers])
 AC_OUTPUT  AC_OUTPUT
   
 dnl  dnl
Line 3104  dnl Spew any text the user needs to know about Line 3275  dnl Spew any text the user needs to know about
 dnl  dnl
 if test "$with_pam" = "yes"; then  if test "$with_pam" = "yes"; then
     case $host in      case $host in
           *-*-hpux*)
               if test -f /usr/lib/security/libpam_hpsec.so.1; then
                   AC_MSG_NOTICE([You may wish to add the following line to /etc/pam.conf])
                   AC_MSG_NOTICE([sudo session required libpam_hpsec.so.1 bypass_umask bypass_last_login])
               fi
               ;;
         *-*-linux*)          *-*-linux*)
             AC_MSG_NOTICE([You will need to customize sample.pam and install it as /etc/pam.d/sudo])              AC_MSG_NOTICE([You will need to customize sample.pam and install it as /etc/pam.d/sudo])
             ;;              ;;
Line 3133  AH_TEMPLATE(HAVE_DD_FD, [Define to 1 if your `DIR' con Line 3310  AH_TEMPLATE(HAVE_DD_FD, [Define to 1 if your `DIR' con
 AH_TEMPLATE(HAVE_DIRFD, [Define to 1 if you have the `dirfd' function or macro.])  AH_TEMPLATE(HAVE_DIRFD, [Define to 1 if you have the `dirfd' function or macro.])
 AH_TEMPLATE(HAVE_DISPCRYPT, [Define to 1 if you have the `dispcrypt' function.])  AH_TEMPLATE(HAVE_DISPCRYPT, [Define to 1 if you have the `dispcrypt' function.])
 AH_TEMPLATE(HAVE_DLOPEN, [Define to 1 if you have the `dlopen' function.])  AH_TEMPLATE(HAVE_DLOPEN, [Define to 1 if you have the `dlopen' function.])
 AH_TEMPLATE(HAVE_EXTENDED_GLOB, [Define to 1 if your glob.h defines the GLOB_BRACE and GLOB_TILDE flags.])  
 AH_TEMPLATE(HAVE_FCNTL_CLOSEM, [Define to 1 if your system has the F_CLOSEM fcntl.])  AH_TEMPLATE(HAVE_FCNTL_CLOSEM, [Define to 1 if your system has the F_CLOSEM fcntl.])
 AH_TEMPLATE(HAVE_FNMATCH, [Define to 1 if you have the `fnmatch' function.])  AH_TEMPLATE(HAVE_FNMATCH, [Define to 1 if you have the `fnmatch' function.])
 AH_TEMPLATE(HAVE_FWTK, [Define to 1 if you use the FWTK authsrv daemon.])  AH_TEMPLATE(HAVE_FWTK, [Define to 1 if you use the FWTK authsrv daemon.])
Line 3144  AH_TEMPLATE(HAVE_GETSPNAM, [Define to 1 if you have th Line 3320  AH_TEMPLATE(HAVE_GETSPNAM, [Define to 1 if you have th
 AH_TEMPLATE(HAVE_GETSPWUID, [Define to 1 if you have the `getspwuid' function. (HP-UX <= 9.X shadow passwords)])  AH_TEMPLATE(HAVE_GETSPWUID, [Define to 1 if you have the `getspwuid' function. (HP-UX <= 9.X shadow passwords)])
 AH_TEMPLATE(HAVE_GSS_KRB5_CCACHE_NAME, [Define to 1 if you have the `gss_krb5_ccache_name' function.])  AH_TEMPLATE(HAVE_GSS_KRB5_CCACHE_NAME, [Define to 1 if you have the `gss_krb5_ccache_name' function.])
 AH_TEMPLATE(HAVE_HEIMDAL, [Define to 1 if your Kerberos is Heimdal.])  AH_TEMPLATE(HAVE_HEIMDAL, [Define to 1 if your Kerberos is Heimdal.])
 AH_TEMPLATE(HAVE_IN6_ADDR, [Define to 1 if <netinet/in.h> contains struct in6_addr.])  
 AH_TEMPLATE(HAVE_ISCOMSEC, [Define to 1 if you have the `iscomsec' function. (HP-UX >= 10.x check for shadow enabled)])  AH_TEMPLATE(HAVE_ISCOMSEC, [Define to 1 if you have the `iscomsec' function. (HP-UX >= 10.x check for shadow enabled)])
 AH_TEMPLATE(HAVE_ISSECURE, [Define to 1 if you have the `issecure' function. (SunOS 4.x check for shadow enabled)])  AH_TEMPLATE(HAVE_ISSECURE, [Define to 1 if you have the `issecure' function. (SunOS 4.x check for shadow enabled)])
 AH_TEMPLATE(HAVE_KERB4, [Define to 1 if you use Kerberos IV.])  
 AH_TEMPLATE(HAVE_KERB5, [Define to 1 if you use Kerberos V.])  AH_TEMPLATE(HAVE_KERB5, [Define to 1 if you use Kerberos V.])
 AH_TEMPLATE(HAVE_KRB5_GET_INIT_CREDS_OPT_ALLOC, [Define to 1 if you have the `krb5_get_init_creds_opt_alloc' function.])  AH_TEMPLATE(HAVE_KRB5_GET_INIT_CREDS_OPT_ALLOC, [Define to 1 if you have the `krb5_get_init_creds_opt_alloc' function.])
 AH_TEMPLATE(HAVE_KRB5_GET_INIT_CREDS_OPT_FREE_TWO_ARGS, [Define to 1 if your `krb5_get_init_creds_opt_free' function takes two arguments.])  AH_TEMPLATE(HAVE_KRB5_GET_INIT_CREDS_OPT_FREE_TWO_ARGS, [Define to 1 if your `krb5_get_init_creds_opt_free' function takes two arguments.])
Line 3165  AH_TEMPLATE(HAVE_SECURID, [Define to 1 if you use Secu Line 3339  AH_TEMPLATE(HAVE_SECURID, [Define to 1 if you use Secu
 AH_TEMPLATE(HAVE_SELINUX, [Define to 1 to enable SELinux RBAC support.])  AH_TEMPLATE(HAVE_SELINUX, [Define to 1 to enable SELinux RBAC support.])
 AH_TEMPLATE(HAVE_SETKEYCREATECON, [Define to 1 if you have the `setkeycreatecon' function.])  AH_TEMPLATE(HAVE_SETKEYCREATECON, [Define to 1 if you have the `setkeycreatecon' function.])
 AH_TEMPLATE(HAVE_SHL_LOAD, [Define to 1 if you have the `shl_load' function.])  AH_TEMPLATE(HAVE_SHL_LOAD, [Define to 1 if you have the `shl_load' function.])
 AH_TEMPLATE(HAVE_SIGACTION_T, [Define to 1 if <signal.h> has the sigaction_t typedef.])  
 AH_TEMPLATE(HAVE_SKEY, [Define to 1 if you use S/Key.])  AH_TEMPLATE(HAVE_SKEY, [Define to 1 if you use S/Key.])
 AH_TEMPLATE(HAVE_SKEYACCESS, [Define to 1 if your S/Key library has skeyaccess().])  AH_TEMPLATE(HAVE_SKEYACCESS, [Define to 1 if your S/Key library has skeyaccess().])
 AH_TEMPLATE(HAVE_RFC1938_SKEYCHALLENGE, [Define to 1 if the skeychallenge() function is RFC1938-compliant and takes 4 arguments])  AH_TEMPLATE(HAVE_RFC1938_SKEYCHALLENGE, [Define to 1 if the skeychallenge() function is RFC1938-compliant and takes 4 arguments])
 AH_TEMPLATE(HAVE_ST__TIM, [Define to 1 if your struct stat uses an st__tim union])  AH_TEMPLATE(HAVE_ST__TIM, [Define to 1 if your struct stat uses an st__tim union])
 AH_TEMPLATE(HAVE_ST_MTIM, [Define to 1 if your struct stat has an st_mtim member])  AH_TEMPLATE(HAVE_ST_MTIM, [Define to 1 if your struct stat has an st_mtim member])
 AH_TEMPLATE(HAVE_ST_MTIMESPEC, [Define to 1 if your struct stat has an st_mtimespec member])  AH_TEMPLATE(HAVE_ST_MTIMESPEC, [Define to 1 if your struct stat has an st_mtimespec member])
 AH_TEMPLATE(HAVE_TIMESPEC, [Define to 1 if you have struct timespec in sys/time.h])  
 AH_TEMPLATE(HAVE___PROGNAME, [Define to 1 if your crt0.o defines the __progname symbol for you.])  AH_TEMPLATE(HAVE___PROGNAME, [Define to 1 if your crt0.o defines the __progname symbol for you.])
 AH_TEMPLATE(HOST_IN_LOG, [Define to 1 if you want the hostname to be entered into the log file.])  AH_TEMPLATE(HOST_IN_LOG, [Define to 1 if you want the hostname to be entered into the log file.])
 AH_TEMPLATE(IGNORE_DOT_PATH, [Define to 1 if you want to ignore '.' and empty PATH elements])  AH_TEMPLATE(IGNORE_DOT_PATH, [Define to 1 if you want to ignore '.' and empty PATH elements])
Line 3199  AH_TEMPLATE(USE_STOW, [Define to 1 if you use GNU stow Line 3371  AH_TEMPLATE(USE_STOW, [Define to 1 if you use GNU stow
 AH_TEMPLATE(WITHOUT_PASSWD, [Define to avoid using the passwd/shadow file for authentication.])  AH_TEMPLATE(WITHOUT_PASSWD, [Define to avoid using the passwd/shadow file for authentication.])
 AH_TEMPLATE(sig_atomic_t, [Define to `int' if <signal.h> does not define.])  AH_TEMPLATE(sig_atomic_t, [Define to `int' if <signal.h> does not define.])
 AH_TEMPLATE(__signed, [Define to `signed' or nothing if compiler does not support a signed type qualifier.])  AH_TEMPLATE(__signed, [Define to `signed' or nothing if compiler does not support a signed type qualifier.])
   AH_TEMPLATE(socklen_t, [Define to `unsigned int' if <sys/socket.h> doesn't define.])
 AH_TEMPLATE(HAVE_STRUCT_UTMP_UT_EXIT, [Define to 1 if `ut_exit' is a member of `struct utmp'.])  AH_TEMPLATE(HAVE_STRUCT_UTMP_UT_EXIT, [Define to 1 if `ut_exit' is a member of `struct utmp'.])
 AH_TEMPLATE(HAVE_STRUCT_UTMPX_UT_EXIT, [Define to 1 if `ut_exit' is a member of `struct utmpx'.])  AH_TEMPLATE(HAVE_STRUCT_UTMPX_UT_EXIT, [Define to 1 if `ut_exit' is a member of `struct utmpx'.])
   AH_TEMPLATE(HAVE___FUNC__, [Define to 1 if the compiler supports the C99 __func__ variable.])
   AH_TEMPLATE(SUDO_KRB5_INSTANCE, [An instance string to append to the username (separated by a slash) for Kerberos V authentication])
   AH_TEMPLATE(RTLD_PRELOAD_VAR, [The environment variable that controls preloading of dynamic objects.])
   AH_TEMPLATE(RTLD_PRELOAD_ENABLE_VAR, [An extra environment variable that is required to enable preloading (if any).])
   AH_TEMPLATE(RTLD_PRELOAD_DELIM, [The delimiter to use when defining multiple preloaded objects.])
   AH_TEMPLATE(RTLD_PRELOAD_DEFAULT, [The default value of preloaded objects (if any).])
   
 dnl  dnl
 dnl Bits to copy verbatim into config.h.in  dnl Bits to copy verbatim into config.h.in
Line 3233  AH_BOTTOM([/* Line 3412  AH_BOTTOM([/*
 #  define mtim_get(_x, _y)      do { (_y)->tv_sec = (_x)->st_mtime; (_y)->tv_usec = 0; } while (0)  #  define mtim_get(_x, _y)      do { (_y)->tv_sec = (_x)->st_mtime; (_y)->tv_usec = 0; } while (0)
 # endif /* HAVE_ST_MTIMESPEC */  # endif /* HAVE_ST_MTIMESPEC */
 #endif /* HAVE_ST_MTIM */  #endif /* HAVE_ST_MTIM */
   
   #ifdef __GNUC__
   # define ignore_result(x) do {                                                 \
       __typeof__(x) y = (x);                                                     \
       (void)y;                                                                   \
   } while(0)
   #else
   # define ignore_result(x)       (void)(x)
   #endif
   
 /* GNU stow needs /etc/sudoers to be a symlink. */  /* GNU stow needs /etc/sudoers to be a symlink. */
 #ifdef USE_STOW  #ifdef USE_STOW

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>