summaryrefslogtreecommitdiffstats
path: root/src/kdc
diff options
context:
space:
mode:
authorRichard Basch <probe@mit.edu>1996-01-22 04:42:57 +0000
committerRichard Basch <probe@mit.edu>1996-01-22 04:42:57 +0000
commit99deb652aed6395120f957f211dbd604e4aa8774 (patch)
treec66bc10bd69472ed21e1379a1f204922f0831902 /src/kdc
parent412fffc7d49c8452d42c42ba7f2e74aff1c5d1ae (diff)
downloadkrb5-99deb652aed6395120f957f211dbd604e4aa8774.tar.gz
krb5-99deb652aed6395120f957f211dbd604e4aa8774.tar.xz
krb5-99deb652aed6395120f957f211dbd604e4aa8774.zip
Simplified to simply require the use of WITH_ANAME or USE_KDB5_LIBRARY
to specify the need for dbm inclusion/testing/compilation flags. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7350 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/kdc')
-rw-r--r--src/kdc/configure.in18
1 files changed, 1 insertions, 17 deletions
diff --git a/src/kdc/configure.in b/src/kdc/configure.in
index 90f90d8de8..d75f15d276 100644
--- a/src/kdc/configure.in
+++ b/src/kdc/configure.in
@@ -23,7 +23,7 @@ dnl information and failure information.
dnl
AC_ARG_WITH([kdc-kdb-update],
[ --with-kdc-kdb-update Update the database
- --without-kdc-kdb-update1 Do not update the database (default)],
+ --without-kdc-kdb-update Do not update the database (default)],
,
withval=no)dnl
if test "$withval" = yes; then
@@ -31,22 +31,6 @@ if test "$withval" = yes; then
AC_DEFINE(KRBCONF_KDC_MODIFIES_KDB)
fi
dnl
-dnl --with-dbm uses native DBM for the KDC database.
-dnl
-AC_ARG_WITH([dbm],
-[ --with-dbm use native dbm for kdc database
- --without-dbm use included version of Berkeley db (default)],
-,
-withval=no)dnl
-if test "$withval" = yes; then
- AC_MSG_RESULT(Using native dbm)
- AC_CHECK_LIB(ndbm,main)
- AC_CHECK_LIB(dbm,main)
-else
- AC_MSG_RESULT(Using Berkeley db)
-fi
-AC_SUBST(DBFLAGS)dnl
-dnl
USE_KADM_LIBRARY
USE_KDB5_LIBRARY
USE_KRB4_LIBRARY