@@ -1329,8 +1329,8 @@ Optional Packages:
13291329 --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
13301330 --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
13311331 --with-crypto-library=TYPE
1332- Select crypto library, one of: internal, openssl ,
1333- wolfssl, nss
1332+ Select crypto library, one of: openssl, wolfssl ,
1333+ nss, internal
13341334 --with-openssl-dir Location of OpenSSL installation
13351335 --with-wolfssl-dir Location of wolfSSL installation
13361336 --with-nss-dir Location of NSS installation
@@ -5387,18 +5387,23 @@ $as_echo_n "checking for crypto library... " >&6; }
53875387if test " ${with_crypto_library+set} " = set ; then :
53885388 withval=$with_crypto_library ; case " $with_crypto_library " in
53895389 internal) ;;
5390- openssl) enable_openssl=yes ;;
5391- wolfssl) enable_wolfssl=yes ;;
5392- nss) enable_nss=yes ;;
5393- * ) as_fn_error " Invalid crypto library: $with_crypto_library . Select one of: internal, openssl, wolfssl, nss," " $LINENO " 5 ;;
5390+ openssl) ;;
5391+ wolfssl) ;;
5392+ nss) ;;
5393+ * ) as_fn_error " Invalid crypto library: $with_crypto_library . Select one of: openssl, wolfssl, nss, internal " " $LINENO " 5 ;;
53945394 esac
53955395else
5396- with_crypto_library=internal
5396+ with_crypto_library=openssl
53975397fi
53985398
53995399{ $as_echo " $as_me :${as_lineno-$LINENO } : result: $with_crypto_library " >&5
54005400$as_echo " $with_crypto_library " >&6 ; }
5401-
5401+ case " $with_crypto_library " in
5402+ internal) ;;
5403+ openssl) enable_openssl=yes ;;
5404+ wolfssl) enable_wolfssl=yes ;;
5405+ nss) enable_nss=yes ;;
5406+ esac
54025407if test " $enable_openssl " = " yes" ; then
54035408 { $as_echo " $as_me :${as_lineno-$LINENO } : checking for user specified OpenSSL directory" >&5
54045409$as_echo_n " checking for user specified OpenSSL directory... " >&6 ; }
0 commit comments