From 99deb652aed6395120f957f211dbd604e4aa8774 Mon Sep 17 00:00:00 2001 From: Richard Basch Date: Mon, 22 Jan 1996 04:42:57 +0000 Subject: 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 --- src/admin/convert/configure.in | 32 +------------------------------- 1 file changed, 1 insertion(+), 31 deletions(-) (limited to 'src/admin/convert') diff --git a/src/admin/convert/configure.in b/src/admin/convert/configure.in index 248acf5b0..c72ceb418 100644 --- a/src/admin/convert/configure.in +++ b/src/admin/convert/configure.in @@ -1,37 +1,7 @@ AC_INIT(kdb5_convert.c) CONFIG_RULES AC_PROG_INSTALL -did_dbm_lib=no -AC_ARG_WITH([kdb4], -[ --with-kdb4 use Kerberos version 4 database library. - --without-kdb4 Avoid using Kerberos version 4 database library.], -, -withval=no)dnl -if test "$withval" = yes; then - AC_MSG_RESULT(Using Kerberos version 4 database library) - USE_KDB4_LIBRARY - AC_CHECK_LIB(ndbm,main) - AC_CHECK_LIB(dbm,main) - did_dbm_lib=yes -else - AC_DEFINE(KDB4_DISABLE) -fi -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) - if test "$did_dbm_lib" = no; then - AC_CHECK_LIB(ndbm,main) - AC_CHECK_LIB(dbm,main) - fi -else - AC_MSG_RESULT(Using Berkeley db) -fi -AC_SUBST(DBFLAGS)dnl -dnl +WITH_KDB4(USE_KDB4_LIBRARY,AC_DEFINE(KDB4_DISABLE)) USE_KADM_LIBRARY USE_KDB5_LIBRARY USE_KRB4_LIBRARY -- cgit