From f962a6b1d22b0b54d429d64b4ca5a629938e7274 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Fri, 7 Dec 2007 17:53:42 +0000 Subject: [PATCH] Add --with-hdbdir to specify where the database is stored. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22206 ec53bebd-3082-4978-b11e-865c3cabbd6b --- configure.in | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/configure.in b/configure.in index 24413c91c..a63ce96a8 100644 --- a/configure.in +++ b/configure.in @@ -77,6 +77,16 @@ fi AM_CONDITIONAL(PKINIT, test "$enable_pk_init" != no) +dnl path where the hdb directory is stored +AC_ARG_WITH([hdbdir], + [AC_HELP_STRING([--with-hdbdir], + [Default location for KDC database @<:@default=/var/heimdal@:>@])], + [], + [with_hdbdir=/var/heimdal]) +HDB_dir="$with_hdbdir" +AC_SUBST([HDB_dir]) + + dnl no kerberos4 any more with_krb4=no AC_SUBST(INCLUDE_krb4)