added skey support

This commit is contained in:
Todd C. Miller
1994-11-08 01:40:52 +00:00
parent 7f271c978e
commit 15c283a955

View File

@@ -38,6 +38,11 @@ AC_WITH(C2, AC_DEFINE(HAVE_C2_SECURITY)
C2=1 C2=1
echo 'Configuring for C2 security') echo 'Configuring for C2 security')
dnl dnl
dnl --with-Skey
AC_WITH(SKEY, AC_DEFINE(HAVE_SKEY)
SKEY=1
echo 'Configuring for use with Skey')
dnl
dnl --with-AFS dnl --with-AFS
AC_WITH(AFS, AC_DEFINE(HAVE_AFS) AC_WITH(AFS, AC_DEFINE(HAVE_AFS)
AFS=1 AFS=1
@@ -162,6 +167,11 @@ if test -n "$AFS" ; then
LIBS="${LIBS} -L/usr/lib/afs -lkauth -lprot -lauth -lubik -lrxkad -lsys -ldes -lrx -llwp -lcom_err -laudit -lutil" LIBS="${LIBS} -L/usr/lib/afs -lkauth -lprot -lauth -lubik -lrxkad -lsys -ldes -lrx -llwp -lcom_err -laudit -lutil"
fi fi
dnl dnl
dnl extra Skey lib
if test -n "$SKEY" ; then
LIBS="${LIBS} -lskey"
fi
dnl
dnl C compiler checks (to be done after os checks) dnl C compiler checks (to be done after os checks)
dnl dnl
AC_GCC_TRADITIONAL AC_GCC_TRADITIONAL