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 --- tests/CMakeLists.txt | 2 +- tests/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index 72e36d4..d7cc499 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -33,7 +33,7 @@ elseif(HOST_LOONGARCH64) elseif(HOST_MIPS64) include_directories(../crypto/arch/mips64) elseif(HOST_MIPS) - # XXX - can this go away? the directory doesn't exist... + include_directories(../crypto/arch/mips) elseif(HOST_POWERPC) include_directories(../crypto/arch/powerpc) elseif(HOST_POWERPC64) diff --git a/tests/Makefile.am b/tests/Makefile.am index 217f445..b58de21 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -40,8 +40,8 @@ if HOST_LOONGARCH64 AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/loongarch64/ endif -# XXX - do we still need this? if HOST_MIPS +AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/mips/ endif if HOST_MIPS64 -- cgit v1.2.3-55-g6feb