summaryrefslogtreecommitdiffstats
path: root/src/aclocal.m4
diff options
context:
space:
mode:
authorTom Yu <tlyu@mit.edu>2003-04-02 04:47:53 +0000
committerTom Yu <tlyu@mit.edu>2003-04-02 04:47:53 +0000
commitf43088e76274fdfad885f6a012efa2d18c86b58b (patch)
tree653041682c362e032c1552868854cc83459bf253 /src/aclocal.m4
parent667926b0cbc8acabaecc58f8edbfb18a738aaa86 (diff)
downloadkrb5-f43088e76274fdfad885f6a012efa2d18c86b58b.tar.gz
krb5-f43088e76274fdfad885f6a012efa2d18c86b58b.tar.xz
krb5-f43088e76274fdfad885f6a012efa2d18c86b58b.zip
don't install in-tree libdb
Don't install the in-tree libdb. This requires that libkdb, etc. explicitly pull in the object files of the in-tree libdb if not using the system libdb. ticket: new status: open target_version: 1.3 tags: pullup git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15320 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/aclocal.m4')
-rw-r--r--src/aclocal.m45
1 files changed, 5 insertions, 0 deletions
diff --git a/src/aclocal.m4 b/src/aclocal.m4
index b83f1d431..cb2f400ec 100644
--- a/src/aclocal.m4
+++ b/src/aclocal.m4
@@ -1506,17 +1506,22 @@ if test "x$with_system_db" = xyes ; then
else
DB_HEADER_VERSION=redirect
fi
+ KDB5_DB_LIB="$DB_LIB"
else
DB_VERSION=k5
AC_DEFINE(HAVE_BT_RSEQ,1,[Define if bt_rseq is available, for recursive btree traversal.])
DB_HEADER=db.h
DB_HEADER_VERSION=k5
+ # libdb gets sucked into libkdb
+ KDB5_DB_LIB=
+ # needed for a couple of things that need libdb for its own sake
DB_LIB=-ldb
fi
AC_SUBST(DB_VERSION)
AC_SUBST(DB_HEADER)
AC_SUBST(DB_HEADER_VERSION)
AC_SUBST(DB_LIB)
+AC_SUBST(KDB5_DB_LIB)
])
dnl
dnl