1996-07-24 06:19:16 +00:00
dnl
1995-12-18 03:22:10 +00:00
dnl Process this file with GNU autoconf to produce a configure script.
1996-07-24 06:19:16 +00:00
dnl $Id$
dnl
1994-03-09 23:51:22 +00:00
AC_INIT(sudo.h)
1995-01-16 21:31:57 +00:00
AC_CONFIG_HEADER(config.h)
1994-03-09 23:51:22 +00:00
dnl
1995-12-18 03:22:10 +00:00
dnl This won't work before AC_INIT()
dnl
1998-01-21 05:55:45 +00:00
echo "Configuring CU Sudo version 1.5.5"
1995-12-18 03:22:10 +00:00
dnl
1994-03-09 23:51:22 +00:00
dnl Variables that get substituted in the Makefile
dnl
PROGS="sudo visudo"
1995-09-01 02:53:07 +00:00
AC_SUBST(CFLAGS)dnl
1994-03-09 23:51:22 +00:00
AC_SUBST(PROGS)dnl
1995-12-05 23:56:43 +00:00
SUDO_LDFLAGS=""
AC_SUBST(SUDO_LDFLAGS)dnl
VISUDO_LDFLAGS=""
AC_SUBST(VISUDO_LDFLAGS)dnl
SUDO_LIBS=""
AC_SUBST(SUDO_LIBS)dnl
VISUDO_LIBS=""
AC_SUBST(VISUDO_LIBS)dnl
1996-07-08 20:08:33 +00:00
AFS_LIBS=""
AC_SUBST(AFS_LIBS)dnl
1995-06-18 17:58:42 +00:00
CPPFLAGS=""
AC_SUBST(CPPFLAGS)dnl
1994-07-07 00:52:41 +00:00
OSDEFS=""
AC_SUBST(OSDEFS)dnl
1994-03-09 23:51:22 +00:00
OPTIONS=""
AC_SUBST(OPTIONS)dnl
1995-12-05 23:56:43 +00:00
DCE_OBJS=""
AC_SUBST(DCE_OBJS)dnl
1994-06-06 20:56:58 +00:00
LIBOBJS=""
AC_SUBST(LIBOBJS)dnl
1994-06-26 20:35:48 +00:00
TGETPASS="tgetpass.o"
AC_SUBST(TGETPASS)dnl
1994-08-05 21:48:56 +00:00
MANTYPE="man"
1995-11-19 02:27:39 +00:00
AC_SUBST(MANTYPE)dnl
1994-08-05 23:43:56 +00:00
MAN_POSTINSTALL=""
AC_SUBST(MAN_POSTINSTALL)dnl
1995-11-19 02:27:39 +00:00
dnl
dnl Override default configure dirs...
dnl
test "$mandir" = '${prefix}/man' && mandir='$(prefix)/man'
test "$bindir" = '${exec_prefix}/bin' && bindir='$(exec_prefix)/bin'
test "$sbindir" = '${exec_prefix}/sbin' && sbindir='$(exec_prefix)/etc'
test "$sysconfdir" = '${prefix}/etc' && sysconfdir='/etc'
1995-06-18 17:58:42 +00:00
1994-03-09 23:51:22 +00:00
dnl
1995-01-27 01:28:02 +00:00
dnl Options for --with
1994-06-26 20:35:48 +00:00
dnl
1995-06-18 17:58:42 +00:00
1996-04-28 00:40:31 +00:00
AC_ARG_WITH(CC, [ --with-CC C compiler to use],
[case $with_CC in
yes) echo "Must give --with-CC an argument."
exit 1
;;
no) echo "Illegal argument: --without-CC."
exit 1
;;
*) CC=$with_CC
;;
esac])
1996-04-02 23:48:08 +00:00
AC_ARG_WITH(getpass, [ --with-getpass use system getpass(3)],
[case $with_getpass in
yes) AC_DEFINE(USE_GETPASS)
echo 'Using system getpass'
TGETPASS=""
;;
no) ;;
*) echo "Ignoring unknown argument to --with-getpass: $with_getpass"
;;
esac])
AC_ARG_WITH(C2, [ --with-C2 enable C2 security (shadow password) support],
[case $with_C2 in
1996-07-26 03:45:27 +00:00
yes) echo 'Configuring for C2 security (shadow passwords)'
1996-04-02 23:48:08 +00:00
;;
no) ;;
*) echo "Ignoring unknown argument to --with-C2: $with_C2"
;;
esac])
AC_ARG_WITH(skey, [ --with-skey enable S/Key support ],
[case $with_skey in
yes) AC_DEFINE(HAVE_SKEY)
echo 'Configuring for use with S/Key'
;;
no) ;;
*) echo "Ignoring unknown argument to --with-skey: $with_skey"
;;
esac])
1996-10-05 03:59:53 +00:00
AC_ARG_WITH(opie, [ --with-opie enable OPIE support ],
[case $with_opie in
yes) AC_DEFINE(HAVE_OPIE)
echo 'Configuring for use with NRL OPIE'
;;
no) ;;
*) echo "Ignoring unknown argument to --with-opie: $with_opie"
;;
esac])
1996-04-02 23:48:08 +00:00
AC_ARG_WITH(SecurID, [ --with-SecurID enable SecurID support],
[case $with_SecurID in
yes) AC_DEFINE(HAVE_SECURID)
echo 'Configuring for use with SecurID'
;;
no) ;;
*) echo "Ignoring unknown argument to --with-SecurID: $with_SecurID"
;;
esac])
AC_ARG_WITH(kerb4, [ --with-kerb4 enable kerberos v4 support],
[case $with_kerb4 in
yes) AC_DEFINE(HAVE_KERB4)
echo 'Configuring for use with Kerberos version 4'
;;
no) ;;
*) echo "Ignoring unknown argument to --with-kerb4: $with_kerb4"
;;
esac])
AC_ARG_WITH(kerb5, [ --with-kerb5 enable kerberos v5 support],
[case $with_kerb5 in
yes) AC_DEFINE(HAVE_KERB5)
echo 'Configuring for use with Kerberos version 5'
;;
no) ;;
*) echo "Ignoring unknown argument to --with-kerb5: $with_kerb5"
;;
esac])
1996-04-28 00:40:31 +00:00
AC_ARG_WITH(AFS, [ --with-AFS enable AFS support],
1996-04-02 23:48:08 +00:00
[case $with_AFS in
yes) AC_DEFINE(HAVE_AFS)
echo 'Configuring for use with AFS'
;;
no) ;;
*) echo "Ignoring unknown argument to --with-AFS: $with_AFS"
;;
esac])
1998-02-18 23:19:03 +00:00
AC_ARG_WITH(authenticate, [ --with-authenticate enable AIX general authentication support],
1998-02-17 05:37:26 +00:00
[case $with_authenticate in
yes) AC_DEFINE(HAVE_AUTHENTICATE)
echo 'Configuring for use with AIX general authentication'
;;
no) ;;
*) echo "Ignoring unknown argument to --with-authenticate: $with_authenticate"
;;
esac])
1996-04-28 00:40:31 +00:00
AC_ARG_WITH(DCE, [ --with-DCE enable DCE support],
1996-04-02 23:48:08 +00:00
[case $with_DCE in
yes) AC_DEFINE(HAVE_DCE)
echo 'Configuring for use with DCE'
;;
no) ;;
*) echo "Ignoring unknown argument to --with-DCE: $with_DCE"
;;
esac])
1998-03-28 00:46:12 +00:00
AC_ARG_WITH(logfile, [ --with-logfile path to the sudo log file],
[case $with_logfile in
yes) echo "Must give --with-logfile an argument."
exit 1
;;
no) echo "Sorry, --without-logfile not supported."
exit 1
;;
esac])
AC_ARG_WITH(timedir, [ --with-timedir path to the sudo timestamp dir],
[case $with_timedir in
yes) echo "Must give --with-timedir an argument."
exit 1
;;
no) echo "Sorry, --without-timedir not supported."
exit 1
;;
esac])
1996-07-08 00:32:30 +00:00
AC_ARG_WITH(incpath, [ --with-incpath additional places to look for include files],
1996-07-07 20:27:30 +00:00
[case $with_incpath in
yes) echo "Must give --with-incpath an argument."
exit 1
;;
no) echo "Sorry, --without-incpath not supported."
exit 1
;;
*) echo "Adding ${with_incpath} to CPPFLAGS"
for i in ${with_incpath}; do
CPPFLAGS="${CPPFLAGS} -I${i}"
done
;;
esac])
AC_ARG_WITH(libpath, [ --with-libpath additional places to look for libraries],
[case $with_libpath in
yes) echo "Must give --with-libpath an argument."
exit 1
;;
no) echo "Sorry, --without-libpath not supported."
exit 1
;;
*) echo "Adding ${with_libpath} to SUDO_LDFLAGS and VISUDO_LDFLAGS"
for i in ${with_libpath}; do
LDFLAGS="${LDFLAGS} -L${i}"
SUDO_LDFLAGS="${SUDO_LDFLAGS} -L${i}"
VISUDO_LDFLAGS="${VISUDO_LDFLAGS} -L${i}"
done
;;
esac])
AC_ARG_WITH(libraries, [ --with-libraries additional libraries to link with],
[case $with_libraries in
yes) echo "Must give --with-libraries an argument."
exit 1
;;
no) echo "Sorry, --without-libraries not supported."
exit 1
;;
*) echo "Adding ${with_libraries} to SUDO_LIBS and VISUDO_LIBS"
for i in ${with_libraries}; do
1996-07-08 00:32:30 +00:00
case $i in
-l*) ;;
*.a) ;;
*.o) ;;
*) i="-l${i}";;
esac
LIBS="${LIBS} ${i}"
SUDO_LIBS="${SUDO_LIBS} ${i}"
VISUDO_LIBS="${VISUDO_LIBS} ${i}"
1996-07-07 20:27:30 +00:00
done
;;
esac])
1996-04-02 23:48:08 +00:00
AC_ARG_WITH(csops, [ --with-csops add CSOps standard options],
[case $with_csops in
yes) OPTIONS="${OPTIONS} -DIGNORE_DOT_PATH -DUSE_INSULTS -DCLASSIC_INSULTS -DCSOPS_INSULTS -DENV_EDITOR"
sbindir='$(exec_prefix)/sbin'
echo 'CSOps--adding options: IGNORE_DOT_PATH USE_INSULTS CLASSIC_INSULTS CSOPS_INSULTS ENV_EDITOR'
;;
no) ;;
*) echo "Ignoring unknown argument to --with-csops: $with_csops"
;;
esac])
1995-06-18 17:58:42 +00:00
1994-03-09 23:51:22 +00:00
dnl
1995-03-30 02:12:19 +00:00
dnl If we don't have egrep we can't do anything...
dnl
AC_CHECK_PROG(EGREPPROG, egrep, egrep, )
1996-05-25 22:07:46 +00:00
if test -z "$EGREPPROG"; then
1995-03-30 02:12:19 +00:00
echo "Sorry, configure requires egrep to run."
exit
fi
1995-06-18 17:58:42 +00:00
1995-03-30 02:12:19 +00:00
dnl
1994-03-09 23:51:22 +00:00
dnl C compiler checks
dnl
1998-02-15 23:49:17 +00:00
ac_cv_prog_cc_cross="no"
1996-04-02 23:48:08 +00:00
cross_compiling="no"
1994-03-09 23:51:22 +00:00
AC_PROG_CC
AC_PROG_CPP
1996-01-07 19:25:50 +00:00
AC_ISC_POSIX
1995-06-18 17:58:42 +00:00
1994-03-09 23:51:22 +00:00
dnl
1995-03-30 02:12:19 +00:00
dnl find programs we use
1994-05-24 16:50:57 +00:00
dnl
1995-03-30 02:12:19 +00:00
AC_CHECK_PROG(UNAMEPROG, uname, uname, )
AC_CHECK_PROG(TRPROG, tr, tr, )
AC_CHECK_PROG(SEDPROG, sed, sed, )
AC_CHECK_PROG(NROFFPROG, nroff, nroff, )
1996-05-25 22:07:46 +00:00
if test -z "$NROFFPROG"; then
1994-08-05 21:48:56 +00:00
MANTYPE="cat"
fi
1995-06-18 17:58:42 +00:00
1994-05-24 16:50:57 +00:00
dnl
1996-07-24 05:59:28 +00:00
dnl What kind of beastie are we being run on?
dnl Barf if config.cache was generated on another host.
1994-03-09 23:51:22 +00:00
dnl
1996-07-24 05:59:28 +00:00
AC_CANONICAL_HOST
1996-07-26 03:45:27 +00:00
if test -n "$sudo_cv_prev_host"; then
if test "$sudo_cv_prev_host" != "$host"; then
echo ""
echo "Fatal Error: config.cache exists from another platform!"
echo "Please remove it and re-run configure."
echo ""
exit 1
else
AC_MSG_CHECKING(previous host type)
AC_CACHE_VAL(sudo_cv_prev_host, sudo_cv_prev_host="$host")
echo $sudo_cv_prev_host
fi
else
# this will produce no output since there is no cached value
AC_CACHE_VAL(sudo_cv_prev_host, sudo_cv_prev_host="$host")
1996-07-24 17:02:18 +00:00
fi
1996-07-24 05:59:28 +00:00
dnl
dnl We want to be able to differentiate between different rev's
dnl
if test -n "$host_os"; then
OS=`echo $host_os | sed 's/[[0-9]].*//'`
OSREV=`echo $host_os | sed 's/^[[^0-9]]*\([[0-9]][[0-9]]*\).*$/\1/'`
else
OS="unknown"
OSREV=0
fi
case "$host" in
*-*-sunos4*)
1996-09-08 19:15:31 +00:00
# Don't really need -lnsl
1996-03-19 22:04:13 +00:00
LIB_NSL=1
1996-07-20 04:23:08 +00:00
1996-07-30 02:29:58 +00:00
if test -z "$with_C2"; then
SUDO_CHECK_SHADOW_SUNOS4(with_C2="yes")
fi
1996-04-02 23:48:08 +00:00
if test "$with_C2" = "yes"; then
1995-07-18 03:53:56 +00:00
SHADOW_TYPE="SPW_SUNOS4"
1995-07-17 04:21:17 +00:00
AC_DEFINE_UNQUOTED(SHADOW_TYPE, $SHADOW_TYPE)
fi
1994-05-28 23:36:22 +00:00
;;
1996-07-24 05:59:28 +00:00
*-*-solaris2*)
1996-07-30 02:29:58 +00:00
if test -z "$with_C2"; then
SUDO_CHECK_SHADOW_SVR4(with_C2="yes")
fi
1996-04-02 23:48:08 +00:00
if test "$with_C2" != "no"; then
with_C2="yes"
SHADOW_TYPE="SPW_SVR4"
AC_DEFINE_UNQUOTED(SHADOW_TYPE, $SHADOW_TYPE)
fi
1996-07-20 04:23:08 +00:00
1996-07-08 20:08:33 +00:00
# AFS support needs -lucb
if test "$with_AFS" = "yes"; then
AFS_LIBS="-lc -lucb"
fi
1994-05-28 23:36:22 +00:00
;;
1996-07-24 05:59:28 +00:00
*-*-aix*)
1994-05-28 23:36:22 +00:00
AC_DEFINE(_ALL_SOURCE)
1996-01-15 01:52:28 +00:00
SUDO_LDFLAGS="${SUDO_LDFLAGS} -Wl,-bI:\$(srcdir)/aixcrypt.exp"
1994-05-28 23:36:22 +00:00
;;
1998-02-17 04:56:43 +00:00
*-*-hpux1[[0-9]]*)
1995-12-05 23:56:43 +00:00
# uncomment this for a statically linked sudo
# (XXX - should be an option to configure)
#STATIC_SUDO=true
1996-07-30 02:29:58 +00:00
if test -z "$with_C2"; then
SUDO_CHECK_SHADOW_SECUREWARE(with_C2="yes")
fi
1996-07-24 05:59:28 +00:00
if test "$with_C2" = "yes"; then
SHADOW_TYPE="SPW_SECUREWARE"
AC_DEFINE_UNQUOTED(SHADOW_TYPE, $SHADOW_TYPE)
SUDO_LIBS="${SUDO_LIBS} -lsec"
LIBS="${LIBS} -lsec"
fi
1996-07-20 04:23:08 +00:00
1996-07-24 05:59:28 +00:00
if test -n "$STATIC_SUDO"; then
1996-05-25 22:07:46 +00:00
if test -n "$GCC"; then
1995-12-05 23:56:43 +00:00
SUDO_LDFLAGS="${SUDO_LDFLAGS} -static"
1994-09-20 23:37:13 +00:00
else
1995-12-05 23:56:43 +00:00
SUDO_LDFLAGS="${SUDO_LDFLAGS} -Wl,-a,archive"
1994-09-20 23:37:13 +00:00
fi
1996-07-24 05:59:28 +00:00
fi
1996-07-20 04:23:08 +00:00
1996-07-24 05:59:28 +00:00
# DCE support (requires ANSI C compiler)
if test "$with_DCE" = "yes"; then
if test -n "$GCC"; then
CPPFLAGS="${CPPFLAGS} -D_HPUX_SOURCE"
else
CPPFLAGS="${CPPFLAGS} -Aa -D_HPUX_SOURCE"
1995-12-05 23:56:43 +00:00
fi
1996-07-24 05:59:28 +00:00
fi
1995-12-05 23:56:43 +00:00
1996-07-24 05:59:28 +00:00
# AFS support needs -lBSD
if test "$with_AFS" = "yes"; then
AFS_LIBS="-lc -lBSD"
fi
;;
*-*-hpux9*)
# uncomment this for a statically linked sudo
# (XXX - should be an option to configure)
#STATIC_SUDO=true
1995-12-05 23:56:43 +00:00
1996-07-24 05:59:28 +00:00
AC_DEFINE(BROKEN_SYSLOG)
1996-07-30 02:29:58 +00:00
if test -z "$with_C2"; then
SUDO_CHECK_SHADOW_HPUX9(with_C2="yes")
fi
1996-07-24 05:59:28 +00:00
if test "$with_C2" = "yes"; then
SHADOW_TYPE="SPW_HPUX9"
AC_DEFINE_UNQUOTED(SHADOW_TYPE, $SHADOW_TYPE)
fi
1996-07-20 04:23:08 +00:00
1996-07-24 05:59:28 +00:00
if test -n "$STATIC_SUDO"; then
if test -n "$GCC"; then
SUDO_LDFLAGS="${SUDO_LDFLAGS} -static"
else
SUDO_LDFLAGS="${SUDO_LDFLAGS} -Wl,-a,archive"
1995-12-05 23:56:43 +00:00
fi
1996-07-24 05:59:28 +00:00
fi
# DCE support (requires ANSI C compiler)
if test "$with_DCE" = "yes"; then
# order of libs in 9.X is important. -lc_r must be last
SUDO_LIBS="-ldce -lM -lc_r"
1995-12-05 23:56:43 +00:00
1996-07-24 05:59:28 +00:00
if test -n "$GCC"; then
CPPFLAGS="${CPPFLAGS} -D_HPUX_SOURCE -D_REENTRANT -I/usr/include/reentrant"
else
CPPFLAGS="${CPPFLAGS} -Aa -D_HPUX_SOURCE -D_REENTRANT -I/usr/include/reentrant"
1995-12-05 23:56:43 +00:00
fi
1995-11-20 03:31:20 +00:00
fi
1996-07-08 20:08:33 +00:00
# AFS support needs -lBSD
1996-05-25 22:07:46 +00:00
if test "$with_AFS" = "yes"; then
1996-07-08 20:08:33 +00:00
AFS_LIBS="-lc -lBSD"
1994-05-28 23:36:22 +00:00
fi
;;
1996-07-24 05:59:28 +00:00
*-*-hpux*)
AC_DEFINE(BROKEN_SYSLOG)
# Not sure if setuid binaries are safe in < 9.x
if test -n "$GCC"; then
SUDO_LDFLAGS="${SUDO_LDFLAGS} -static"
else
SUDO_LDFLAGS="${SUDO_LDFLAGS} -Wl,-a,archive"
fi
# AFS support needs -lBSD
if test "$with_AFS" = "yes"; then
AFS_LIBS="-lc -lBSD"
fi
;;
*-dec-osf*)
1996-09-08 19:15:31 +00:00
# Don't really need -lnsl (DUNIX 4.x has it, < 4.x does not)
LIB_NSL=1
1996-07-24 05:59:28 +00:00
# ignore envariables wrt dynamic lib path
SUDO_LDFLAGS="${SUDO_LDFLAGS} -Wl,-no_library_replacement"
1996-09-08 19:15:31 +00:00
# C2 security stuff
1996-07-30 02:29:58 +00:00
if test -z "$with_C2"; then
SUDO_CHECK_SHADOW_DUNIX(with_C2="yes")
fi
1996-04-02 23:48:08 +00:00
if test "$with_C2" = "yes"; then
1995-12-05 23:56:43 +00:00
SUDO_LIBS="${SUDO_LIBS} -lsecurity -laud"
1996-07-14 01:36:23 +00:00
LIBS="${LIBS} -lsecurity -laud"
1995-07-18 03:53:56 +00:00
SHADOW_TYPE="SPW_SECUREWARE"
1995-07-17 04:21:17 +00:00
AC_DEFINE_UNQUOTED(SHADOW_TYPE, $SHADOW_TYPE)
1994-09-01 02:17:20 +00:00
fi
1994-05-28 23:36:22 +00:00
;;
1996-07-24 05:59:28 +00:00
*-*-irix*)
1996-07-30 02:29:58 +00:00
if test -z "$with_C2"; then
SUDO_CHECK_SHADOW_SVR4(with_C2="yes")
fi
1996-04-02 23:48:08 +00:00
if test "$with_C2" = "yes"; then
1995-07-18 03:53:56 +00:00
SHADOW_TYPE="SPW_SVR4"
1995-07-17 04:21:17 +00:00
AC_DEFINE_UNQUOTED(SHADOW_TYPE, $SHADOW_TYPE)
1995-07-02 00:15:19 +00:00
fi
1996-07-24 05:59:28 +00:00
# configure may not think irix has stdc headers
1994-05-28 23:36:22 +00:00
# but it's good enough for sudo
AC_DEFINE(STDC_HEADERS)
1996-05-25 22:07:46 +00:00
if test -z "$NROFFPROG"; then
1996-07-07 20:27:30 +00:00
MAN_POSTINSTALL=' /bin/rm -f $(mandir8)/sudo.$(mansect8).z $(mandir8)/visudo.$(mansect8).z $(mandir5)/sudoers.$(mansect5).z ; /usr/bin/pack $(mandir8)/sudo.$(mansect8) $(mandir8)/visudo.$(mansect8) $(mandir5)/sudoers.$(mansect5)'
1994-08-05 23:43:56 +00:00
if test -d /usr/share/catman/local; then
1995-11-19 02:27:39 +00:00
mandir="/usr/share/catman/local"
1994-08-05 23:43:56 +00:00
else
1995-11-19 02:27:39 +00:00
mandir="/usr/catman/local"
1994-08-05 23:43:56 +00:00
fi
1994-08-05 21:48:56 +00:00
else
1996-05-25 22:07:46 +00:00
if test -d "/usr/share/man/local"; then
1995-11-19 02:27:39 +00:00
mandir="/usr/share/man/local"
1994-08-05 23:43:56 +00:00
else
1995-11-19 02:27:39 +00:00
mandir="/usr/man/local"
1994-08-05 23:43:56 +00:00
fi
1994-08-05 21:48:56 +00:00
fi
1994-05-28 23:36:22 +00:00
;;
1996-07-24 05:59:28 +00:00
*-*-linux*)
1996-07-30 02:29:58 +00:00
if test -z "$with_C2"; then
SUDO_CHECK_SHADOW_SVR4(with_C2="yes")
fi
1996-04-02 23:48:08 +00:00
if test "$with_C2" = "yes"; then
1995-07-18 03:53:56 +00:00
SHADOW_TYPE="SPW_SVR4"
1995-07-17 04:21:17 +00:00
AC_DEFINE_UNQUOTED(SHADOW_TYPE, $SHADOW_TYPE)
1995-03-29 00:31:20 +00:00
OSDEFS="${OSDEFS} -DSHADOW_PWD"
1996-07-14 01:36:23 +00:00
AC_CHECK_FUNC(getspnam, ,
SUDO_LIBS="${SUDO_LIBS} -lshadow"
LIBS="${LIBS} -lshadow")
1994-09-01 17:22:02 +00:00
fi
1994-05-28 23:36:22 +00:00
;;
1996-07-24 05:59:28 +00:00
*-convex-bsd*)
1994-05-28 23:36:22 +00:00
AC_DEFINE(_CONVEX_SOURCE)
1996-05-25 22:07:46 +00:00
if test -z "$GCC"; then
1995-11-13 06:12:19 +00:00
CFLAGS="${CFLAGS} -D__STDC__"
fi
1996-07-24 05:59:28 +00:00
1996-07-30 02:29:58 +00:00
if test -z "$with_C2"; then
SUDO_CHECK_SHADOW_SECUREWARE(with_C2="yes")
fi
1996-04-02 23:48:08 +00:00
if test "$with_C2" = "yes"; then
1994-07-07 00:52:41 +00:00
OSDEFS="${OSDEFS} -D_AUDIT -D_ACL -DSecureWare"
1995-12-05 23:56:43 +00:00
SUDO_LIBS="${SUDO_LIBS} -lprot"
1996-07-14 01:36:23 +00:00
LIBS="${LIBS} -lprot"
1995-07-18 03:53:56 +00:00
SHADOW_TYPE="SPW_SECUREWARE"
1995-07-17 04:21:17 +00:00
AC_DEFINE_UNQUOTED(SHADOW_TYPE, $SHADOW_TYPE)
1994-07-07 00:52:41 +00:00
fi
1994-05-28 23:36:22 +00:00
;;
1996-07-24 05:59:28 +00:00
*-*-ultrix*)
OS="ultrix"
1996-07-30 02:29:58 +00:00
if test -z "$with_C2"; then
SUDO_CHECK_SHADOW_ULTRIX4(with_C2="yes")
fi
1996-04-02 23:48:08 +00:00
if test "$with_C2" = "yes"; then
1995-12-05 23:56:43 +00:00
SUDO_LIBS="${SUDO_LIBS} -lauth"
1996-07-14 01:36:23 +00:00
LIBS="${LIBS} -lauth"
1995-07-18 03:53:56 +00:00
SHADOW_TYPE="SPW_ULTRIX4"
1995-07-17 04:21:17 +00:00
AC_DEFINE_UNQUOTED(SHADOW_TYPE, $SHADOW_TYPE)
1994-07-25 22:25:15 +00:00
fi
1994-05-28 23:36:22 +00:00
;;
1996-07-24 05:59:28 +00:00
*-*-riscos*)
1996-07-30 02:29:58 +00:00
if test -z "$with_C2"; then
SUDO_CHECK_SHADOW_SVR4(with_C2="yes")
fi
1996-07-16 18:57:10 +00:00
if test "$with_C2" = "yes"; then
SHADOW_TYPE="SPW_SVR4"
AC_DEFINE_UNQUOTED(SHADOW_TYPE, $SHADOW_TYPE)
fi
1996-07-20 04:23:08 +00:00
1996-07-24 05:59:28 +00:00
SUDO_LIBS="${SUDO_LIBS} -lsun -lbsd"
LIBS="${LIBS} -lsun -lbsd"
CPPFLAGS="${CPPFLAGS} -I/usr/include -I/usr/include/bsd"
OSDEFS="${OSDEFS} -D_MIPS"
1996-07-18 22:27:10 +00:00
;;
1996-07-24 05:59:28 +00:00
*-*-isc*)
OSDEFS="${OSDEFS} -D_ISC"
LIB_CRYPT=1
SUDO_LIBS="${SUDO_LIBS} -lcrypt"
LIBS="${LIBS} -lcrypt"
1996-07-18 22:27:10 +00:00
1996-07-30 02:29:58 +00:00
if test -z "$with_C2"; then
SUDO_CHECK_SHADOW_SVR4(with_C2="yes")
fi
1996-07-24 05:59:28 +00:00
if test "$with_C2" = "yes"; then
SUDO_LIBS="${SUDO_LIBS} -lsec"
LIBS="${LIBS} -lsec"
1996-04-02 23:48:08 +00:00
SHADOW_TYPE="SPW_SVR4"
AC_DEFINE_UNQUOTED(SHADOW_TYPE, $SHADOW_TYPE)
fi
1995-04-13 17:19:40 +00:00
;;
1996-07-24 05:59:28 +00:00
*-*-sco*)
1996-07-30 02:29:58 +00:00
if test -z "$with_C2"; then
SUDO_CHECK_SHADOW_SECUREWARE(with_C2="yes")
fi
1996-04-02 23:48:08 +00:00
if test "$with_C2" = "yes"; then
1995-07-19 21:29:58 +00:00
SHADOW_TYPE="SPW_SECUREWARE"
AC_DEFINE_UNQUOTED(SHADOW_TYPE, $SHADOW_TYPE)
1995-12-05 23:56:43 +00:00
SUDO_LIBS="${SUDO_LIBS} -lprot -lx"
1996-07-14 01:36:23 +00:00
LIBS="${LIBS} -lprot -lx"
1995-07-19 21:29:58 +00:00
fi
;;
1996-08-29 20:23:26 +00:00
*-*-unicos*)
# configure thinks we have -lsocket and -linet but we don't
LIB_INET=1
LIB_SOCKET=1
1996-08-30 00:40:30 +00:00
;;
1996-10-08 23:22:09 +00:00
*-sequent-sysv*)
# XXX - this needs to be tested.
LIBS="${LIBS} -lsocket -lnsl"
SUDO_LIBS="${LIBS} -lsocket -lnsl"
LIB_SOCKET=1
LIB_NSL=1
if test -z "$with_C2"; then
SUDO_CHECK_SHADOW_SVR4(with_C2="yes")
fi
if test "$with_C2" = "yes"; then
SHADOW_TYPE="SPW_SVR4"
AC_DEFINE_UNQUOTED(SHADOW_TYPE, $SHADOW_TYPE)
SUDO_LIBS="${SUDO_LIBS} -lsec"
LIBS="${LIBS} -lsec"
fi
;;
1996-07-24 05:59:28 +00:00
*-*-bsdi*)
# Use shlicc for BSD/OS 2.x unless asked to do otherwise
1996-07-08 04:04:40 +00:00
if test "$OSREV" -ge 2 -a "${with_CC+set}" != set -a \
"$ac_cv_prog_CC" = "gcc"; then
echo 'using shlicc as CC'
ac_cv_prog_CC=shlicc
CC="$ac_cv_prog_CC"
1996-07-24 05:59:28 +00:00
fi
1996-07-08 04:04:40 +00:00
# This should always be true but why not be careful...
1996-07-30 02:29:58 +00:00
if test -z "$with_C2"; then
SUDO_CHECK_SHADOW_BSD(with_C2="yes")
fi
1996-04-02 23:48:08 +00:00
if test "$with_C2" = "yes"; then
1995-07-18 03:53:56 +00:00
SHADOW_TYPE="SPW_BSD"
1996-07-29 02:47:06 +00:00
AC_DEFINE_UNQUOTED(SHADOW_TYPE, $SHADOW_TYPE)
1995-07-17 04:21:17 +00:00
fi
1994-05-28 23:36:22 +00:00
;;
1996-07-24 05:59:28 +00:00
*-*-*bsd*)
1996-07-30 02:29:58 +00:00
if test -z "$with_C2"; then
SUDO_CHECK_SHADOW_BSD(with_C2="yes")
fi
1996-04-02 23:48:08 +00:00
if test "$with_C2" = "yes"; then
1995-07-18 03:53:56 +00:00
SHADOW_TYPE="SPW_BSD"
1996-07-29 02:47:06 +00:00
AC_DEFINE_UNQUOTED(SHADOW_TYPE, $SHADOW_TYPE)
1995-07-17 04:21:17 +00:00
fi
1994-05-28 23:36:22 +00:00
;;
1998-02-19 01:10:05 +00:00
*-*-svr4*|-*-sysv4*)
1998-01-24 05:50:08 +00:00
LIBS="${LIBS} -lsocket -lnsl"
SUDO_LIBS="${LIBS} -lsocket -lnsl"
LIB_SOCKET=1
LIB_NSL=1
if test -z "$with_C2"; then
SUDO_CHECK_SHADOW_SVR4(with_C2="yes")
fi
if test "$with_C2" = "yes"; then
SHADOW_TYPE="SPW_SVR4"
AC_DEFINE_UNQUOTED(SHADOW_TYPE, $SHADOW_TYPE)
fi
;;
1996-07-24 05:59:28 +00:00
*-*-sysv*)
1996-07-30 02:29:58 +00:00
if test -z "$with_C2"; then
SUDO_CHECK_SHADOW_SVR4(with_C2="yes")
fi
1996-07-20 04:23:08 +00:00
if test "$with_C2" = "yes"; then
1996-07-24 05:59:28 +00:00
SHADOW_TYPE="SPW_SVR4"
AC_DEFINE_UNQUOTED(SHADOW_TYPE, $SHADOW_TYPE)
1996-07-20 04:23:08 +00:00
fi
1994-05-28 23:36:22 +00:00
;;
1996-07-24 05:59:28 +00:00
*)
if test -z "$host"; then
echo "Unable to guess system type, you may need to specify on the command line."
1996-07-20 04:23:08 +00:00
fi
1996-07-24 05:59:28 +00:00
1996-07-20 04:23:08 +00:00
dnl
dnl Is this OS using shadow passwords?
1996-07-24 14:28:33 +00:00
dnl Just check the most common schemes.
1996-07-20 04:23:08 +00:00
dnl
1996-07-24 14:28:33 +00:00
if test -z "$with_C2"; then
1996-07-26 03:45:27 +00:00
SUDO_CHECK_SHADOW_GENERIC(with_C2="yes")
1996-07-24 14:28:33 +00:00
AC_MSG_CHECKING(for shadow passwords and type)
case "$SHADOW_TYPE" in
"SPW_SVR4")
echo "SVR4"
;;
"SPW_BSD")
echo "BSD"
;;
"SPW_SECUREWARE")
echo "SecureWare"
SUDO_LIBS="${SUDO_LIBS} -lprot -lx"
LIBS="${LIBS} -lprot -lx"
;;
"SPW_NONE")
echo "none"
esac
1996-07-29 02:47:06 +00:00
AC_DEFINE_UNQUOTED(SHADOW_TYPE, $SHADOW_TYPE)
1996-07-20 04:23:08 +00:00
fi
1994-05-28 23:36:22 +00:00
;;
esac
1995-06-18 17:58:42 +00:00
1995-07-17 04:21:17 +00:00
dnl
1996-07-24 06:16:23 +00:00
dnl Guess shadow password type unless we already know it.
1996-07-24 14:28:33 +00:00
dnl This is used when the user specified --with-C2 option.
1995-07-17 04:21:17 +00:00
dnl
1996-04-02 23:48:08 +00:00
if test "$with_C2" = "yes" -a -z "$SHADOW_TYPE"; then
1996-07-24 06:16:23 +00:00
AC_CHECK_FUNC(getprpwuid, SHADOW_TYPE="SPW_SECUREWARE", [AC_CHECK_FUNC(getspnam, SHADOW_TYPE="SPW_SVR4", [test -f /etc/master.passwd && SHADOW_TYPE="SPW_BSD"])])
1996-07-24 14:28:33 +00:00
AC_MSG_CHECKING(for shadow password type)
1995-07-17 04:21:17 +00:00
case "$SHADOW_TYPE" in
1996-07-24 06:16:23 +00:00
"SPW_SVR4")
echo "SVR4"
;;
"SPW_BSD")
echo "BSD"
;;
"SPW_SECUREWARE")
echo "SecureWare"
SUDO_LIBS="${SUDO_LIBS} -lprot -lx"
LIBS="${LIBS} -lprot -lx"
;;
*)
SHADOW_TYPE="SPW_NONE"
echo "unknown"
echo "Unable to determine shadow passwd type, sudo may not be able to verify passwords"
;;
1995-07-17 04:21:17 +00:00
esac
1996-07-24 06:16:23 +00:00
AC_DEFINE_UNQUOTED(SHADOW_TYPE, $SHADOW_TYPE)
1996-07-26 03:45:27 +00:00
elif test -z "$SHADOW_TYPE"; then
SHADOW_TYPE="SPW_NONE"
AC_DEFINE_UNQUOTED(SHADOW_TYPE, $SHADOW_TYPE)
1995-07-17 04:21:17 +00:00
fi
1994-11-08 01:40:52 +00:00
dnl
1994-05-28 23:36:22 +00:00
dnl C compiler checks (to be done after os checks)
1994-03-12 18:37:58 +00:00
dnl
1995-03-28 02:15:39 +00:00
AC_PROG_GCC_TRADITIONAL
AC_C_CONST
1994-03-09 23:51:22 +00:00
dnl
1994-05-24 16:50:57 +00:00
dnl Program checks
1994-03-09 23:51:22 +00:00
dnl
AC_PROG_YACC
SUDO_PROG_SENDMAIL
1994-06-04 18:48:19 +00:00
SUDO_PROG_PWD
1995-01-13 17:47:01 +00:00
SUDO_PROG_MV
1996-02-05 22:03:34 +00:00
SUDO_PROG_BSHELL
1994-03-12 18:37:58 +00:00
SUDO_PROG_VI
1994-03-09 23:51:22 +00:00
dnl
dnl Header file checks
dnl
1995-03-28 02:15:39 +00:00
AC_HEADER_STDC
AC_HEADER_DIRENT
1996-10-08 23:22:09 +00:00
AC_CHECK_HEADERS(string.h strings.h unistd.h malloc.h paths.h utime.h fnmatch.h netgroup.h sys/sockio.h sys/bsdtypes.h sys/select.h)
1995-03-26 01:39:00 +00:00
dnl ultrix termio/termios are broken
1996-05-25 22:07:46 +00:00
if test "$OS" != "ultrix"; then
1995-09-03 18:11:25 +00:00
AC_CHECK_HEADERS(termio.h)
AC_CHECK_HEADERS(termios.h, AC_CHECK_FUNCS(tcgetattr))
1994-06-13 19:54:58 +00:00
fi
1994-03-09 23:51:22 +00:00
dnl
dnl typedef checks
dnl
1995-03-28 02:15:39 +00:00
AC_TYPE_MODE_T
AC_TYPE_UID_T
1995-03-30 02:12:19 +00:00
SUDO_TYPE_SIZE_T
SUDO_TYPE_SSIZE_T
1995-03-28 05:22:27 +00:00
SUDO_FULL_VOID
1995-07-23 21:48:17 +00:00
SUDO_UID_T_LEN
1995-07-01 20:04:39 +00:00
SUDO_SOCK_SA_LEN
1994-05-25 03:07:49 +00:00
dnl
dnl only set RETSIGTYPE if it is not set already
dnl
case "$DEFS" in
*"RETSIGTYPE"*) ;;
1995-03-28 02:15:39 +00:00
*) AC_TYPE_SIGNAL;;
1994-05-25 03:07:49 +00:00
esac
1994-03-09 23:51:22 +00:00
dnl
1994-05-24 16:50:57 +00:00
dnl Function checks
1994-03-09 23:51:22 +00:00
dnl
1996-10-09 17:36:56 +00:00
AC_CHECK_FUNCS(strchr strrchr memcpy memset sysconf sigaction tzset strcasecmp seteuid)
1996-07-14 01:36:23 +00:00
if test "$SHADOW_TYPE" = "SPW_SECUREWARE"; then
AC_CHECK_FUNCS(bigcrypt)
fi
1995-07-25 00:03:20 +00:00
AC_CHECK_FUNC(innetgr, AC_DEFINE(HAVE_INNETGR) AC_CHECK_FUNCS(getdomainname))
1995-06-19 19:23:30 +00:00
AC_CHECK_FUNC(getwd, AC_DEFINE(HAVE_GETWD), LIBOBJS="$LIBOBJS getwd.o")
1995-03-28 02:15:39 +00:00
AC_CHECK_FUNC(strdup, AC_DEFINE(HAVE_STRDUP), LIBOBJS="$LIBOBJS strdup.o")
1996-05-25 22:07:46 +00:00
AC_CHECK_FUNC(lsearch, AC_DEFINE(HAVE_LSEARCH), AC_CHECK_LIB(compat, lsearch, AC_CHECK_HEADER(search.h, AC_DEFINE(HAVE_LSEARCH) SUDO_LIBS="${SUDO_LIBS} -lcompat"; VISUDO_LIBS="${VISUDO_LIBS} -lcompat", LIBOBJS="$LIBOBJS lsearch.o"), LIBOBJS="$LIBOBJS lsearch.o"))
1995-03-28 02:15:39 +00:00
AC_CHECK_FUNC(setenv, AC_DEFINE(HAVE_SETENV), AC_FUNC_CHECK(putenv, AC_DEFINE(HAVE_PUTENV), LIBOBJS="$LIBOBJS putenv.o"))
1995-06-18 00:46:55 +00:00
AC_CHECK_FUNC(utime, AC_DEFINE(HAVE_UTIME)
1995-06-19 19:19:26 +00:00
SUDO_FUNC_UTIME_POSIX
1995-06-20 20:56:03 +00:00
AC_FUNC_UTIME_NULL, LIBOBJS="$LIBOBJS utime.o")
1996-10-07 04:55:01 +00:00
SUDO_FUNC_FNMATCH(AC_DEFINE(HAVE_FNMATCH), LIBOBJS="$LIBOBJS fnmatch.o")
1994-03-09 23:51:22 +00:00
dnl
1995-06-07 05:44:36 +00:00
dnl if crypt(3) not in libc, look elsewhere
dnl
1996-03-19 22:04:13 +00:00
if test -z "$LIB_CRYPT"; then
AC_CHECK_FUNC(crypt, ,AC_CHECK_LIB(crypt, crypt, SUDO_LIBS="${SUDO_LIBS} -lcrypt", AC_CHECK_LIB(crypt_d, crypt, SUDO_LIBS="${SUDO_LIBS} -lcrypt_d", AC_CHECK_LIB(crypt, ufc, SUDO_LIBS="${SUDO_LIBS} -lufc"))))
fi
1995-06-07 05:44:36 +00:00
dnl
1996-06-26 02:29:17 +00:00
dnl Bison and DCE use alloca(3), if not in libc, use the sudo one (from gcc)
1996-05-25 22:07:46 +00:00
dnl (gcc includes its own alloca(3) but other compilers may not)
dnl
if test "$with_DCE" = "yes" -o "$ac_cv_prog_YACC" = "bison -y"; then
AC_FUNC_ALLOCA
fi
dnl
1994-03-09 23:51:22 +00:00
dnl library checks
dnl
1995-08-13 04:33:39 +00:00
dnl Irix doesn't want -lnsl or -lsocket (and Irix 4 needs -lsun)
1996-05-25 22:07:46 +00:00
if test "$OS" != "irix"; then
1996-03-19 22:04:13 +00:00
if test -z "$LIB_NSL"; then
AC_CHECK_LIB(nsl, main, SUDO_LIBS="${SUDO_LIBS} -lnsl")
fi
1996-08-29 20:23:26 +00:00
if test -z "$LIB_SOCKET"; then
AC_CHECK_LIB(socket, main, SUDO_LIBS="${SUDO_LIBS} -lsocket")
fi
1996-05-25 22:07:46 +00:00
elif test "$OSREV" -lt 5; then
1995-12-06 22:45:01 +00:00
AC_CHECK_LIB(sun, getpwnam, [SUDO_LIBS="${SUDO_LIBS} -lsun"
VISUDO_LIBS="${VISUDO_LIBS} -lsun"]
)
1995-01-27 01:52:33 +00:00
fi
1996-08-29 20:23:26 +00:00
if test -z "$LIB_INET"; then
AC_CHECK_LIB(inet, main, SUDO_LIBS="${SUDO_LIBS} -linet")
fi
1994-03-09 23:51:22 +00:00
dnl
1995-06-18 17:58:42 +00:00
dnl Find kerberos includes and libs or complain
dnl
1996-05-25 22:07:46 +00:00
if test "$with_kerb4" = "yes" -o "$with_kerb5" = "yes"; then
if test -f "/usr/include/kerberosIV/krb.h"; then
1995-06-18 17:58:42 +00:00
CPPFLAGS="${CPPFLAGS} -I/usr/include/kerberosIV"
1996-05-25 22:07:46 +00:00
elif test -f "/usr/local/include/kerberosIV/krb.h"; then
1995-06-18 17:58:42 +00:00
CPPFLAGS="${CPPFLAGS} -I/usr/local/include/kerberosIV"
1996-05-25 22:07:46 +00:00
elif test -f "/usr/kerberos/include/krb.h"; then
1995-06-18 17:58:42 +00:00
CPPFLAGS="${CPPFLAGS} -I/usr/kerberos/include"
1996-05-25 22:07:46 +00:00
elif test -f "/usr/local/kerberos/include/krb.h"; then
1996-02-04 07:08:45 +00:00
CPPFLAGS="${CPPFLAGS} -I/usr/local/kerberos/include"
1995-06-18 17:58:42 +00:00
else
1995-12-06 22:30:54 +00:00
echo 'Unable to locate kerberos include files, you will have to edit the Makefile and add -I/path/to/krb/includes to CPPFLAGS'
1995-06-18 17:58:42 +00:00
fi
1996-05-25 22:07:46 +00:00
if test -d "/usr/kerberos/lib"; then
1995-12-05 23:56:43 +00:00
SUDO_LDFLAGS="${SUDO_LDFLAGS} -L/usr/kerberos/lib"
1996-05-25 22:07:46 +00:00
elif test -d "/usr/lib/kerberos"; then
1995-12-05 23:56:43 +00:00
SUDO_LDFLAGS="${SUDO_LDFLAGS} -L/usr/lib/kerberos"
1996-05-25 22:07:46 +00:00
elif test -f "/usr/local/lib/libkrb.a"; then
1995-12-05 23:56:43 +00:00
SUDO_LDFLAGS="${SUDO_LDFLAGS} -L/usr/local/lib"
1996-05-25 22:07:46 +00:00
elif test ! -f "/usr/lib/libkrb.a"; then
1995-12-06 22:30:54 +00:00
echo 'Unable to locate kerberos libraries, you will have to edit the Makefile and add -L/path/to/krb/libs to SUDO_LDFLAGS'
1995-06-18 17:58:42 +00:00
fi
1996-10-07 04:55:01 +00:00
test "$OS" = "solaris" && echo "If you are using the Sun's Solaris kerberos you will need to remove -ldes from the SUDO_LIBS define in the Makefile"
1995-12-05 23:56:43 +00:00
SUDO_LIBS="${SUDO_LIBS} -lkrb -ldes"
1996-05-25 22:07:46 +00:00
if test "$with_kerb5" = "yes"; then
1995-12-05 23:56:43 +00:00
SUDO_LIBS="${SUDO_LIBS} -ldes425 -lkrb5 -lcrypto -lcom_err"
1995-06-18 17:58:42 +00:00
fi
fi
dnl
1996-07-08 20:08:33 +00:00
dnl extra AFS libs and includes
1995-06-18 17:58:42 +00:00
dnl
1996-05-25 22:07:46 +00:00
if test "$with_AFS" = "yes"; then
1996-07-08 20:08:33 +00:00
# looks like the "standard" place for AFS libs is /usr/afsws/lib
AFSLIBDIRS="/usr/lib/afs /usr/afsws/lib /usr/afsws/lib/afs"
for i in $AFSLIBDIRS; do
if test -d ${i}; then
SUDO_LDFLAGS="${SUDO_LDFLAGS} -L${i}"
FOUND_AFSLIBDIR=true
fi
done
if test -z "$FOUND_AFSLIBDIR"; then
echo 'Unable to locate AFS libraries, you will have to edit the Makefile and add -L/path/to/afs/libs to SUDO_LDFLAGS or rerun configure with the --with-libpath options.'
1995-06-18 17:58:42 +00:00
fi
1996-07-08 20:08:33 +00:00
# Order is important here. Note that we build AFS_LIBS from right to left
# since AFS_LIBS may be initialized with BSD compat libs that must go last
AFS_LIBS="-laudit ${AFS_LIBS}"
for i in $AFSLIBDIRS; do
if test -f ${i}/util.a; then
AFS_LIBS="${i}/util.a ${AFS_LIBS}"
FOUND_UTIL_A=true
break;
fi
done
if test -z "$FOUND_UTIL_A"; then
AFS_LIBS="-lutil ${AFS_LIBS}"
fi
AFS_LIBS="-lkauth -lprot -lubik -lauth -lrxkad -lsys -ldes -lrx -llwp -lcom_err ${AFS_LIBS}"
# AFS includes may live in /usr/include on some machines...
for i in /usr/afsws/include; do
if test -d ${i}; then
CPPFLAGS="${CPPFLAGS} -I${i}"
FOUND_AFSINCDIR=true
fi
done
if test -z "$FOUND_AFSLIBDIR"; then
echo 'Unable to locate AFS include dir, you may have to edit the Makefile and add -I/path/to/afs/includes to CPPFLAGS or rerun configure with the --with-incpath options.'
fi
1995-06-18 17:58:42 +00:00
fi
dnl
1996-05-25 22:07:46 +00:00
dnl extra DCE obj + lib
dnl Order of libs in HP-UX 10.x is important, -ldce must be last.
1995-11-20 03:31:20 +00:00
dnl
1996-05-25 22:07:46 +00:00
if test "$with_DCE" = "yes"; then
1996-04-02 23:48:08 +00:00
DCE_OBJS="${DCE_OBJS} dce_pwent.o"
1996-05-25 22:07:46 +00:00
SUDO_LIBS="${SUDO_LIBS} -ldce"
1995-11-20 03:31:20 +00:00
fi
dnl
1996-10-05 03:59:53 +00:00
dnl extra S/Key lib and includes
1995-11-20 03:31:20 +00:00
dnl
1996-05-25 22:07:46 +00:00
if test "$with_skey" = "yes"; then
1995-12-05 23:56:43 +00:00
SUDO_LIBS="${SUDO_LIBS} -lskey"
1996-03-11 19:04:24 +00:00
if test -f /usr/include/skey.h -a -f /usr/lib/libskey.a; then
:
elif test -f /usr/local/include/skey.h; then
1995-11-19 23:25:51 +00:00
CPPFLAGS="${CPPFLAGS} -I/usr/local/include"
1995-12-05 23:56:43 +00:00
SUDO_LDFLAGS="${SUDO_LDFLAGS} -L/usr/local/lib"
1996-04-03 18:40:42 +00:00
elif test "$with_csops" = "yes" -a -f /tools/cs/skey/include/skey.h -a -f /tools/cs/skey/lib/libskey.a; then
1995-11-21 23:00:41 +00:00
CPPFLAGS="${CPPFLAGS} -I/tools/cs/skey/include"
1995-12-05 23:56:43 +00:00
SUDO_LDFLAGS="${SUDO_LDFLAGS} -L/tools/cs/skey/lib"
1995-11-19 23:25:51 +00:00
else
1995-12-06 22:30:54 +00:00
echo 'Unable to locate libskey.a and/or skey.h, you will have to edit the Makefile and add -L/path/to/skey/lib to SUDO_LDFLAGS and/or -I/path/to/skey.h to CPPFLAGS'
1995-11-19 23:25:51 +00:00
fi
1995-06-18 17:58:42 +00:00
fi
1996-10-05 03:59:53 +00:00
dnl
dnl extra OPIE lib and includes
dnl
if test "$with_opie" = "yes"; then
SUDO_LIBS="${SUDO_LIBS} -lopie"
if test -f /usr/include/opie.h -a -f /usr/lib/libopie.a; then
:
elif test -f /usr/local/include/opie.h; then
CPPFLAGS="${CPPFLAGS} -I/usr/local/include"
SUDO_LDFLAGS="${SUDO_LDFLAGS} -L/usr/local/lib"
else
echo 'Unable to locate libopie.a and/or opie.h, you will have to edit the Makefile and add -L/path/to/opie/lib to SUDO_LDFLAGS and/or -I/path/to/opie.h to CPPFLAGS'
fi
fi
1995-09-01 02:53:07 +00:00
dnl
dnl extra SecurID lib + includes
1996-05-25 22:07:46 +00:00
dnl
if test "$with_SecurID" = "yes"; then
1995-12-05 23:56:43 +00:00
SUDO_LIBS="${SUDO_LIBS} /usr/ace/sdiclient.a"
1995-09-01 02:53:07 +00:00
CPPFLAGS="${CPPFLAGS} -I/usr/ace"
fi
1998-02-17 05:37:26 +00:00
dnl
dnl extra 'authenticate' lib (AIX only?)
dnl
if test "$with_authenticate" = "yes"; then
SUDO_LIBS="${SUDO_LIBS} -ls"
fi
1994-05-24 16:50:57 +00:00
dnl
1996-03-11 01:58:51 +00:00
dnl Check for log file and timestamp locations
1995-03-30 02:12:19 +00:00
dnl
SUDO_LOGFILE
1996-03-11 01:58:51 +00:00
SUDO_TIMEDIR
1995-06-18 17:58:42 +00:00
1995-11-19 02:27:39 +00:00
dnl
dnl Set exec_prefix
dnl
test "$exec_prefix" = "NONE" && exec_prefix='$(prefix)'
1995-03-30 02:12:19 +00:00
dnl
1994-05-24 16:50:57 +00:00
dnl Substitute into the Makefiles
1994-03-09 23:51:22 +00:00
dnl
1995-03-24 19:17:03 +00:00
AC_OUTPUT(Makefile)