From 0024db221f8525f34690aee9deec2508707ca9df Mon Sep 17 00:00:00 2001 From: Chris Conlon Date: Fri, 10 Jan 2014 16:11:17 -0700 Subject: [PATCH] fix --enable-pkcs7 configure.ac --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index e2a570e0c..69e3efa21 100644 --- a/configure.ac +++ b/configure.ac @@ -1215,14 +1215,14 @@ then AM_CFLAGS="$AM_CFLAGS -DHAVE_TLS_EXTENSIONS -DHAVE_SNI -DHAVE_MAX_FRAGMENT -DHAVE_TRUNCATED_HMAC" fi -# PKCS#7 +# PKCS7 AC_ARG_ENABLE([pkcs7], [ --enable-pkcs7 Enable PKCS7 (default: disabled)], [ ENABLED_PKCS7=$enableval ], - [ ENABLED_PKCS7=no ] + [ ENABLED_PKCS7=no ], ) -if test "ENABLED_PKCS7" = "yes" +if test "$ENABLED_PKCS7" = "yes" then AM_CFLAGS="$AM_CFLAGS -DHAVE_PKCS7" fi