File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1818 __asm__ __volatile__("movq $0 x100000000,%1; mulq %%rsi" : "+a"(a) : "S"(tmp) : "cc", "%rdx");
1919 ] ] ) ] ,[ has_64bit_asm=yes] ,[ has_64bit_asm=no] )
2020AC_MSG_RESULT ( [ $has_64bit_asm] )
21- if test x"$set_field" == x"64bit_asm"; then
22- if test x"$has_64bit_asm" == x"no"; then
21+ if test x"$set_field" = x"64bit_asm"; then
22+ if test x"$has_64bit_asm" = x"no"; then
2323 AC_MSG_ERROR ( [ $set_field field support explicitly requested but no x86_64 assembly available] )
2424 fi
2525fi
4343) ] )
4444 LIBS=
4545fi
46- if test x"$has_libcrypto" == x"yes" && test x"$has_openssl_ec" = x; then
46+ if test x"$has_libcrypto" = x"yes" && test x"$has_openssl_ec" = x; then
4747 AC_MSG_CHECKING ( for EC functions in libcrypto )
4848 AC_COMPILE_IFELSE ( [ AC_LANG_PROGRAM ( [ [
4949 #include <openssl/ec.h>
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ if test "x$CFLAGS" = "x"; then
2323fi
2424
2525AC_PROG_CC_C99
26- if test x"$ac_cv_prog_cc_c99" == x"no"; then
26+ if test x"$ac_cv_prog_cc_c99" = x"no"; then
2727 AC_MSG_ERROR ( [ c99 compiler support required] )
2828fi
2929
258258
259259if test x"$use_tests" = x"yes"; then
260260 SECP_OPENSSL_CHECK
261- if test x"$has_openssl_ec" == x"yes"; then
261+ if test x"$has_openssl_ec" = x"yes"; then
262262 AC_DEFINE ( ENABLE_OPENSSL_TESTS , 1 , [ Define this symbol if OpenSSL EC functions are available] )
263263 SECP_TEST_INCLUDES="$SSL_CFLAGS $CRYPTO_CFLAGS"
264264 SECP_TEST_LIBS="$CRYPTO_LIBS"
@@ -291,7 +291,7 @@ AC_SUBST(SECP_INCLUDES)
291291AC_SUBST ( SECP_LIBS )
292292AC_SUBST ( SECP_TEST_LIBS )
293293AC_SUBST ( SECP_TEST_INCLUDES )
294- AM_CONDITIONAL([ USE_ASM] , [ test x"$set_field" == x"64bit_asm"] )
294+ AM_CONDITIONAL([ USE_ASM] , [ test x"$set_field" = x"64bit_asm"] )
295295AM_CONDITIONAL([ USE_TESTS] , [ test x"$use_tests" != x"no"] )
296296AM_CONDITIONAL([ USE_BENCHMARK] , [ test x"$use_benchmark" != x"no"] )
297297
You can’t perform that action at this time.
0 commit comments