From 1087da12fc815a84592454980cdcd5d34b07285b Mon Sep 17 00:00:00 2001 From: Theo Buehler Date: Fri, 11 Apr 2025 18:31:04 +0200 Subject: Sync opensslconf.h, add crypto_arch.h for mips This was easy enough to make compile. As long as it doesn't get in the way, I think we can keep this. Fixes #1110 --- ssl/CMakeLists.txt | 2 +- ssl/Makefile.am | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'ssl') diff --git a/ssl/CMakeLists.txt b/ssl/CMakeLists.txt index 5baa5bc..cd7e335 100644 --- a/ssl/CMakeLists.txt +++ b/ssl/CMakeLists.txt @@ -122,7 +122,7 @@ elseif(HOST_LOONGARCH64) elseif(HOST_MIPS64) target_include_directories(ssl_obj PRIVATE ../crypto/arch/mips64) elseif(HOST_MIPS) - # XXX - can this go away? the directory doesn't exist... + target_include_directories(ssl_obj PRIVATE ../crypto/arch/mips) elseif(HOST_POWERPC) target_include_directories(ssl_obj PRIVATE ../crypto/arch/powerpc) elseif(HOST_POWERPC64) diff --git a/ssl/Makefile.am b/ssl/Makefile.am index 8beb65a..2c84bff 100644 --- a/ssl/Makefile.am +++ b/ssl/Makefile.am @@ -136,9 +136,10 @@ libssl_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/loongarch64/ endif noinst_HEADERS += $(top_srcdir)/crypto/arch/loongarch64/crypto_arch.h -# XXX - do we still need this? if HOST_MIPS +libssl_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/mips/ endif +noinst_HEADERS += $(top_srcdir)/crypto/arch/mips/crypto_arch.h if HOST_MIPS64 libssl_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/mips64/ -- cgit v1.2.3-55-g6feb