From e8d3028ec576920f2019d16cec968bf4852c667a Mon Sep 17 00:00:00 2001 From: Tom Yu Date: Thu, 7 Jul 1994 03:05:46 +0000 Subject: * configure.in (in all relevant subdirs): * Makefile.in (in all relevant subdirs): fixes to suck in -lndbm or -ldbm as needed git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3957 dc483132-0cff-0310-8789-dd5450dbe970 --- src/admin/destroy/Makefile.in | 2 +- src/admin/destroy/configure.in | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) (limited to 'src/admin/destroy') diff --git a/src/admin/destroy/Makefile.in b/src/admin/destroy/Makefile.in index a6a59f9e6..ddfd70e82 100644 --- a/src/admin/destroy/Makefile.in +++ b/src/admin/destroy/Makefile.in @@ -3,7 +3,7 @@ LDFLAGS = -g ISODELIB=@ISODELIB@ COMERRLIB=$(BUILDTOP)/util/et/libcom_err.a -DBMLIB= +DBMLIB=@DBMLIB@ KDBLIB=$(TOPLIBD)/libkdb5.a all:: diff --git a/src/admin/destroy/configure.in b/src/admin/destroy/configure.in index 340d34d3c..3b82e589d 100644 --- a/src/admin/destroy/configure.in +++ b/src/admin/destroy/configure.in @@ -4,6 +4,9 @@ CONFIG_RULES AC_SET_BUILDTOP AC_HAVE_LIBRARY(socket) AC_HAVE_LIBRARY(nsl) +AC_HAVE_LIBRARY(ndbm, DBMLIB="-lndbm") +AC_HAVE_LIBRARY(dbm, DBMLIB="-ldbm") +AC_SUBST(DBMLIB) KRB_INCLUDE ISODE_INCLUDE WITH_KRB5ROOT -- cgit