configure.ac | 2 +- external/openssl/ExternalProject_openssl.mk | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-)
New commits: commit 05dca31d6b84132296e139038b79f9b648b19099 Author: Andras Timar <[email protected]> AuthorDate: Mon May 24 20:15:14 2021 +0200 Commit: Andras Timar <[email protected]> CommitDate: Sun Jan 14 13:12:01 2024 +0100 FreeBSD: fix OPENSSL_PLATFORM Change-Id: I0f48d572edaed7e996be7a75d524c7d540a76ecd diff --git a/external/openssl/ExternalProject_openssl.mk b/external/openssl/ExternalProject_openssl.mk index d197721d024a..048158700f84 100644 --- a/external/openssl/ExternalProject_openssl.mk +++ b/external/openssl/ExternalProject_openssl.mk @@ -26,7 +26,9 @@ OPENSSL_PLATFORM := \ $(if $(filter GNU/kFreeBSD,$(shell uname)),\ debian-kfreebsd-amd64\ ,\ - $(if $(filter TRUE, $(ENABLE_DBGUTIL)), debug-linux-generic64, linux-generic64) no-asm\ + $(if $(filter FreeBSD,$(shell uname)), BSD-x86_64,\ + $(if $(filter TRUE, $(ENABLE_DBGUTIL)), debug-linux-generic64, linux-generic64) no-asm\ + )\ )\ ,\ $(if $(filter TRUE, $(ENABLE_DBGUTIL)), debug-linux-generic32, linux-generic32)\ commit 4ad7b4f30c29067312f882ddd31c3c35ef331e7b Author: Andras Timar <[email protected]> AuthorDate: Mon May 24 20:12:36 2021 +0200 Commit: Andras Timar <[email protected]> CommitDate: Sun Jan 14 13:05:58 2024 +0100 FreeBSD: evaluate --with-gnu-patch Change-Id: I41e2cc8dc74022c840dac6355ed29cc0c4c40b17 diff --git a/configure.ac b/configure.ac index ac7de31f1152..c882f89cba4c 100644 --- a/configure.ac +++ b/configure.ac @@ -11645,7 +11645,7 @@ if test -z "$PATCH"; then fi dnl On Solaris or macOS, check if --with-gnu-patch was used -if test "$_os" = "SunOS" -o "$_os" = "Darwin"; then +if test "$_os" = "SunOS" -o "$_os" = "Darwin" -o "$_os" = "FreeBSD"; then if test -z "$with_gnu_patch"; then GNUPATCH=$PATCH else
