diff options
author | Bob Beck <beck@cvs.openbsd.org> | 1998-10-12 05:26:14 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 1998-10-12 05:26:14 +0000 |
commit | da777c9772fc6c372c72908f9fbed2da7a6b9b73 (patch) | |
tree | 5dcf01769893bf8b48ce26a32d4631b0b2e71d38 /lib/libssl/Makefile.bsd-wrapper | |
parent | 72dfe69c46fb0ea4e34814f9221cd6a2622db624 (diff) |
*UNTESTED* Makefile and configure changes that may work with pmax and arc.
*These need to be tested by someone who has one!!*
Diffstat (limited to 'lib/libssl/Makefile.bsd-wrapper')
-rw-r--r-- | lib/libssl/Makefile.bsd-wrapper | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/libssl/Makefile.bsd-wrapper b/lib/libssl/Makefile.bsd-wrapper index 12347cbb975..b8189988cd1 100644 --- a/lib/libssl/Makefile.bsd-wrapper +++ b/lib/libssl/Makefile.bsd-wrapper @@ -11,6 +11,12 @@ LNDIR= /usr/bin/lndir .if ${MACHINE_ARCH} == "i386" SSLCONF= OpenBSD-x86 .else +.if ${MACHINE_ARCH} == "pmax" +SSLCONF= OpenBSD-pmax +.else +.if ${MACHINE_ARCH} == "arc" +SSLCONF= OpenBSD-arc +.else .if ${MACHINE_ARCH} == "alpha" SSLCONF= OpenBSD-alpha .else @@ -22,6 +28,8 @@ SSLCONF= OpenBSD-bigendian .endif .endif .endif +.endif +.endif .include <bsd.own.mk> |