Make pk-init turned on by default.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@18109 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-09-19 05:36:53 +00:00
parent 63572569a2
commit fbfc689300

View File

@@ -65,12 +65,12 @@ fi
AM_CONDITIONAL(OPENLDAP_MODULE, test "$enable_hdb_openldap_module" = yes -a "$with_openldap" = yes) AM_CONDITIONAL(OPENLDAP_MODULE, test "$enable_hdb_openldap_module" = yes -a "$with_openldap" = yes)
AC_ARG_ENABLE(pk-init, 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 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.]) AC_DEFINE([PKINIT], 1, [Define to enable PKINIT.])
fi fi
AM_CONDITIONAL(PKINIT, test "$enable_pk_init" = yes) AM_CONDITIONAL(PKINIT, test "$enable_pk_init" != no)
rk_TEST_PACKAGE(krb4,[#include <krb.h>],-lkrb,-ldes,/usr/athena, KRB4, krb4-config) rk_TEST_PACKAGE(krb4,[#include <krb.h>],-lkrb,-ldes,/usr/athena, KRB4, krb4-config)