From 0660fe94422b1a548e08f5e1f70b4a42fe8e4f7c Mon Sep 17 00:00:00 2001 From: Panu Matilainen Date: Fri, 19 Oct 2012 15:45:14 +0300 Subject: [PATCH] Default to NSS crypto though... - NSS is a big and quirky monster for our needs but that's what we've been defaulting to for the last years, and then there are those certifications... - Also default to external beecrypt even if --with-beecrypt is used --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index fa5a120..f97978f 100644 --- a/configure.ac +++ b/configure.ac @@ -244,8 +244,8 @@ AM_CONDITIONAL(LIBDWARF,[test "$WITH_LIBDWARF" = yes]) #================= # Check for beecrypt library if requested. -AC_ARG_WITH(beecrypt, [ --with-beecrypt build with beecrypt support ],,[with_beecrypt=yes]) -AC_ARG_WITH(internal_beecrypt, [ --with-internal-beecrypt build with internal beecrypt library ],,[with_internal_beecrypt=yes]) +AC_ARG_WITH(beecrypt, [ --with-beecrypt build with beecrypt support ],,[with_beecrypt=no]) +AC_ARG_WITH(internal_beecrypt, [ --with-internal-beecrypt build with internal beecrypt library ],,[with_internal_beecrypt=no]) AM_CONDITIONAL([WITH_INTERNAL_BEECRYPT],[test "$with_internal_beecrypt" = yes]) if test "$with_internal_beecrypt" = yes ; then with_beecrypt=yes -- 2.7.4