From: Todd C. Miller Date: Mon, 25 Jul 1994 22:25:15 +0000 (+0000) Subject: ultrix enhanced sec X-Git-Tag: SUDO_1_3_1~88 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=445a13eebe486db02419e357f9be20917664c1eb;p=sudo ultrix enhanced sec --- diff --git a/configure.in b/configure.in index 072e1499e..36e6f5b7e 100644 --- a/configure.in +++ b/configure.in @@ -97,6 +97,10 @@ case "$OS" in fi ;; "ultrix"*) echo "Looks like ultrix" + # C2 security stuff + if test -n "$C2"; then + LIBS="${LIBS} -lauth" + fi ;; "ksr"*) echo "Looks like a KSR" ;; @@ -165,9 +169,8 @@ esac dnl dnl Function checks dnl -AC_HAVE_FUNCS(getwd strchr strrchr sysconf sigaction bzero fchdir tzset) +AC_HAVE_FUNCS(getwd strchr strrchr sysconf sigaction bzero tzset) AC_FUNC_CHECK(strdup, AC_DEFINE(HAVE_STRDUP), LIBOBJS="$LIBOBJS strdup.o") -AC_FUNC_CHECK(realpath, AC_DEFINE(HAVE_REALPATH), LIBOBJS="$LIBOBJS realpath.o") AC_FUNC_CHECK(getcwd, AC_DEFINE(HAVE_GETCWD), LIBOBJS="$LIBOBJS getcwd.o") dnl dnl Function checks w/ replacements - XXX