diff options
-rw-r--r-- | usr.sbin/openssl/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/usr.sbin/openssl/Makefile b/usr.sbin/openssl/Makefile index 8c58dde7abd..fa280d2f59b 100644 --- a/usr.sbin/openssl/Makefile +++ b/usr.sbin/openssl/Makefile @@ -16,10 +16,8 @@ SSLEAY_SRC_TOP= ${.CURDIR}/../../${SSLEAYDIST} .if ${MACHINE_ARCH} == "i386" CFLAGS+= -g -DL_ENDIAN -DBN_ASM .else -.if ${MACHINE_ARCH} == "arc" -CFLAGS+= -DL_ENDIAN -.else -.if ${MACHINE_ARCH} == "pmax" +.if (${MACHINE_ARCH} == "arc") || (${MACHINE_ARCH} == "pmax") || \ + (${MACHINE_ARCH} == "vax") CFLAGS+= -DL_ENDIAN .else .if ${MACHINE_ARCH} == "alpha" @@ -28,7 +26,6 @@ CFLAGS+= -DL_ENDIAN CFLAGS+= -DB_ENDIAN .endif .endif -.endif .endif CFLAGS+= -DMONOLITH -DOPENSSL_NO_IDEA -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5 |