build: fix OpenSSL EC detection on macOS
This commit is contained in:
parent
4f27e344c6
commit
84b5fc5bc3
|
@ -38,6 +38,8 @@ AC_DEFUN([SECP_OPENSSL_CHECK],[
|
||||||
fi
|
fi
|
||||||
if test x"$has_libcrypto" = x"yes" && test x"$has_openssl_ec" = x; then
|
if test x"$has_libcrypto" = x"yes" && test x"$has_openssl_ec" = x; then
|
||||||
AC_MSG_CHECKING(for EC functions in libcrypto)
|
AC_MSG_CHECKING(for EC functions in libcrypto)
|
||||||
|
CPPFLAGS_TEMP="$CPPFLAGS"
|
||||||
|
CPPFLAGS="$CRYPTO_CPPFLAGS $CPPFLAGS"
|
||||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
||||||
#include <openssl/ec.h>
|
#include <openssl/ec.h>
|
||||||
#include <openssl/ecdsa.h>
|
#include <openssl/ecdsa.h>
|
||||||
|
@ -51,6 +53,7 @@ if test x"$has_libcrypto" = x"yes" && test x"$has_openssl_ec" = x; then
|
||||||
ECDSA_SIG_free(sig_openssl);
|
ECDSA_SIG_free(sig_openssl);
|
||||||
]])],[has_openssl_ec=yes],[has_openssl_ec=no])
|
]])],[has_openssl_ec=yes],[has_openssl_ec=no])
|
||||||
AC_MSG_RESULT([$has_openssl_ec])
|
AC_MSG_RESULT([$has_openssl_ec])
|
||||||
|
CPPFLAGS="$CPPFLAGS_TEMP"
|
||||||
fi
|
fi
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
|
@ -46,6 +46,7 @@ case $host_os in
|
||||||
if test x$openssl_prefix != x; then
|
if test x$openssl_prefix != x; then
|
||||||
PKG_CONFIG_PATH="$openssl_prefix/lib/pkgconfig:$PKG_CONFIG_PATH"
|
PKG_CONFIG_PATH="$openssl_prefix/lib/pkgconfig:$PKG_CONFIG_PATH"
|
||||||
export PKG_CONFIG_PATH
|
export PKG_CONFIG_PATH
|
||||||
|
CRYPTO_CPPFLAGS="-I$openssl_prefix/include"
|
||||||
fi
|
fi
|
||||||
if test x$gmp_prefix != x; then
|
if test x$gmp_prefix != x; then
|
||||||
GMP_CPPFLAGS="-I$gmp_prefix/include"
|
GMP_CPPFLAGS="-I$gmp_prefix/include"
|
||||||
|
@ -451,7 +452,7 @@ if test x"$use_tests" = x"yes"; then
|
||||||
if test x"$has_openssl_ec" = x"yes"; then
|
if test x"$has_openssl_ec" = x"yes"; then
|
||||||
if test x"$enable_openssl_tests" != x"no"; then
|
if test x"$enable_openssl_tests" != x"no"; then
|
||||||
AC_DEFINE(ENABLE_OPENSSL_TESTS, 1, [Define this symbol if OpenSSL EC functions are available])
|
AC_DEFINE(ENABLE_OPENSSL_TESTS, 1, [Define this symbol if OpenSSL EC functions are available])
|
||||||
SECP_TEST_INCLUDES="$SSL_CFLAGS $CRYPTO_CFLAGS"
|
SECP_TEST_INCLUDES="$SSL_CFLAGS $CRYPTO_CFLAGS $CRYPTO_CPPFLAGS"
|
||||||
SECP_TEST_LIBS="$CRYPTO_LIBS"
|
SECP_TEST_LIBS="$CRYPTO_LIBS"
|
||||||
|
|
||||||
case $host in
|
case $host in
|
||||||
|
|
Loading…
Reference in New Issue