From fbfc689300f785b3573f32e4843c1f429042c7c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Tue, 19 Sep 2006 05:36:53 +0000 Subject: [PATCH] Make pk-init turned on by default. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@18109 ec53bebd-3082-4978-b11e-865c3cabbd6b --- configure.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.in b/configure.in index 2e4ff4db3..0416755b8 100644 --- a/configure.in +++ b/configure.in @@ -65,12 +65,12 @@ fi AM_CONDITIONAL(OPENLDAP_MODULE, test "$enable_hdb_openldap_module" = yes -a "$with_openldap" = yes) AC_ARG_ENABLE(pk-init, - AS_HELP_STRING([--enable-pk-init], + AS_HELP_STRING([--disable-pk-init], [if you want support to pk-init])) -if test "$enable_pk_init" = yes ;then +if test "$enable_pk_init" != no ;then AC_DEFINE([PKINIT], 1, [Define to enable PKINIT.]) fi -AM_CONDITIONAL(PKINIT, test "$enable_pk_init" = yes) +AM_CONDITIONAL(PKINIT, test "$enable_pk_init" != no) rk_TEST_PACKAGE(krb4,[#include ],-lkrb,-ldes,/usr/athena, KRB4, krb4-config)