You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: configure.ac
+32Lines changed: 32 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -5284,6 +5284,11 @@ then
5284
5284
ENABLED_CURVE25519="yes"
5285
5285
fi
5286
5286
5287
+
if test "$ENABLED_CURVE25519" = "no" && test "$ENABLED_LIGHTY" = "yes" && test "x$ENABLED_FIPS" = "xno"
5288
+
then
5289
+
ENABLED_CURVE25519="yes"
5290
+
fi
5291
+
5287
5292
5288
5293
# ED25519
5289
5294
AC_ARG_ENABLE([ed25519],
@@ -10649,6 +10654,23 @@ if test "$ENABLED_SP_MATH_ALL" = "yes" && test "$ENABLED_ASM" != "no"; then
10649
10654
fi
10650
10655
10651
10656
10657
+
if test "$ENABLED_SP_ASM" = "yes" && test "$ENABLED_SP" = "yes"; then
10658
+
case $host_cpu in
10659
+
*x86_64* | *amd64*)
10660
+
case $host_os in
10661
+
*mingw* | *cygwin* | *msys*)
10662
+
if test "$enable_sp_asm" = "yes"; then
10663
+
AC_MSG_ERROR([--enable-sp-asm is not supported for x86_64 Windows hosts (MinGW/Cygwin). Reconfigure without --enable-sp-asm to use the C SP implementation.])
10664
+
else
10665
+
AC_MSG_WARN([x86_64 SP assembly is not supported for Windows hosts (MinGW/Cygwin); disabling SP assembly and using the C implementation.])
10666
+
ENABLED_SP_ASM=no
10667
+
fi
10668
+
;;
10669
+
esac
10670
+
;;
10671
+
esac
10672
+
fi
10673
+
10652
10674
if test "$ENABLED_SP_ASM" = "yes" && test "$ENABLED_SP" = "yes"; then
10653
10675
if test "$ENABLED_SP_NONBLOCK" = "yes"; then
10654
10676
AC_MSG_ERROR([SP non-blocking not supported with sp-asm])
@@ -12684,6 +12706,16 @@ if test "x$WOLFSSL_EXEC_PREFIX_ABS" = "xNONE"; then
12684
12706
fi
12685
12707
prefix=$WOLFSSL_PREFIX_ABS
12686
12708
exec_prefix=$WOLFSSL_EXEC_PREFIX_ABS
12709
+
# The eval calls below expand ${prefix}/${exec_prefix} references embedded in
12710
+
# the libdir/includedir values. eval would, however, also execute or be
12711
+
# subverted by shell metacharacters in a --libdir/--includedir value (command
0 commit comments