diff options
author | Theo Buehler <tb@openbsd.org> | 2025-04-12 18:19:54 +0200 |
---|---|---|
committer | Theo Buehler <tb@openbsd.org> | 2025-04-12 18:19:54 +0200 |
commit | 1e824a0d12df308df6995faf01616054a7a383b0 (patch) | |
tree | b61cb73d1f6952eb4c73d59d65fd23c643505604 /ssl | |
parent | 33537646812ce13f5c6c257a6d44adeae259ef6e (diff) | |
parent | 1087da12fc815a84592454980cdcd5d34b07285b (diff) | |
download | portable-1e824a0d12df308df6995faf01616054a7a383b0.tar.gz portable-1e824a0d12df308df6995faf01616054a7a383b0.tar.bz2 portable-1e824a0d12df308df6995faf01616054a7a383b0.zip |
Land 1147 - reenable mips32
Diffstat (limited to 'ssl')
-rw-r--r-- | ssl/CMakeLists.txt | 2 | ||||
-rw-r--r-- | ssl/Makefile.am | 3 |
2 files changed, 3 insertions, 2 deletions
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) | |||
122 | elseif(HOST_MIPS64) | 122 | elseif(HOST_MIPS64) |
123 | target_include_directories(ssl_obj PRIVATE ../crypto/arch/mips64) | 123 | target_include_directories(ssl_obj PRIVATE ../crypto/arch/mips64) |
124 | elseif(HOST_MIPS) | 124 | elseif(HOST_MIPS) |
125 | # XXX - can this go away? the directory doesn't exist... | 125 | target_include_directories(ssl_obj PRIVATE ../crypto/arch/mips) |
126 | elseif(HOST_POWERPC) | 126 | elseif(HOST_POWERPC) |
127 | target_include_directories(ssl_obj PRIVATE ../crypto/arch/powerpc) | 127 | target_include_directories(ssl_obj PRIVATE ../crypto/arch/powerpc) |
128 | elseif(HOST_POWERPC64) | 128 | 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/ | |||
136 | endif | 136 | endif |
137 | noinst_HEADERS += $(top_srcdir)/crypto/arch/loongarch64/crypto_arch.h | 137 | noinst_HEADERS += $(top_srcdir)/crypto/arch/loongarch64/crypto_arch.h |
138 | 138 | ||
139 | # XXX - do we still need this? | ||
140 | if HOST_MIPS | 139 | if HOST_MIPS |
140 | libssl_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/mips/ | ||
141 | endif | 141 | endif |
142 | noinst_HEADERS += $(top_srcdir)/crypto/arch/mips/crypto_arch.h | ||
142 | 143 | ||
143 | if HOST_MIPS64 | 144 | if HOST_MIPS64 |
144 | libssl_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/mips64/ | 145 | libssl_la_CPPFLAGS += -I$(top_srcdir)/crypto/arch/mips64/ |