From 284cec1ce7c7ed0e18b6e22403d6d8c4ce99b1be Mon Sep 17 00:00:00 2001 From: hugh <> Date: Thu, 18 Jul 2002 02:42:01 +0000 Subject: Correct CFLAGS for vax; deraadt says ok. NB future porters, default is still big endian. --- src/usr.sbin/openssl/Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/usr.sbin/openssl/Makefile b/src/usr.sbin/openssl/Makefile index 8c58dde7ab..fa280d2f59 100644 --- a/src/usr.sbin/openssl/Makefile +++ b/src/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 -- cgit v1.2.3-55-g6feb