generate opensslconf.h for mips

This commit is contained in:
Brent Cook
2023-03-23 06:35:41 -05:00
parent dc7d38d52f
commit 6501696dd7
4 changed files with 7 additions and 1 deletions

View File

@@ -13,6 +13,8 @@ elseif(HOST_ARM)
file(READ arch/arm/opensslconf.h OPENSSLCONF)
elseif(HOST_I386)
file(READ arch/i386/opensslconf.h OPENSSLCONF)
elseif(HOST_MIPS)
file(READ arch/mips/opensslconf.h OPENSSLCONF)
elseif(HOST_MIPS64)
file(READ arch/mips64/opensslconf.h OPENSSLCONF)
elseif(HOST_POWERPC)

View File

@@ -51,6 +51,7 @@ noinst_HEADERS += arch/arm/opensslconf.h
noinst_HEADERS += arch/hppa/opensslconf.h
noinst_HEADERS += arch/i386/opensslconf.h
noinst_HEADERS += arch/m88k/opensslconf.h
noinst_HEADERS += arch/mips/opensslconf.h
noinst_HEADERS += arch/mips64/opensslconf.h
noinst_HEADERS += arch/powerpc/opensslconf.h
noinst_HEADERS += arch/powerpc64/opensslconf.h

View File

@@ -17,6 +17,9 @@ endif
if HOST_I386
-cp $(top_srcdir)/include/arch/i386/opensslconf.h opensslconf.h
endif
if HOST_MIPS
-cp $(top_srcdir)/include/arch/mips/opensslconf.h opensslconf.h
endif
if HOST_MIPS64
-cp $(top_srcdir)/include/arch/mips64/opensslconf.h opensslconf.h
endif