From 138db9ebba7d0d2f69ce47584f0f1d33d7eeb348 Mon Sep 17 00:00:00 2001 From: Greg Hudson Date: Fri, 6 Jan 2012 20:52:02 +0000 Subject: Add test cases for PKINIT ASN.1 encoders Do not add decode tests, because those would trip some bugs in the decoders, and we can't safely fix some of those bugs without interop testing. Encode tests are sufficient to detect when we unintentionally change the output of the encoders. Fix trval2() not to use the context shortcut on primitive context tags. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25609 dc483132-0cff-0310-8789-dd5450dbe970 --- src/configure.in | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/configure.in') diff --git a/src/configure.in b/src/configure.in index 3101439fdb..67ccac2a2b 100644 --- a/src/configure.in +++ b/src/configure.in @@ -1015,12 +1015,15 @@ int i = 1; fi if test "$k5_cv_openssl_version_okay" = yes && (test "$enable_pkinit" = yes || test "$enable_pkinit" = try); then K5_GEN_MAKEFILE(plugins/preauth/pkinit) + PKINIT=yes elif test "$k5_cv_openssl_version_okay" = no && test "$enable_pkinit" = yes; then AC_MSG_ERROR([Version of OpenSSL is too old; cannot enable PKINIT.]) else AC_DEFINE([DISABLE_PKINIT], 1, [Define to disable PKINIT plugin support]) AC_MSG_NOTICE([Disabling PKINIT support.]) + PKINIT=no fi +AC_SUBST(PKINIT) # for lib/apputils AC_REPLACE_FUNCS(daemon) -- cgit