summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhugh <>2002-07-18 02:42:01 +0000
committerhugh <>2002-07-18 02:42:01 +0000
commit284cec1ce7c7ed0e18b6e22403d6d8c4ce99b1be (patch)
tree0d5231a033878ac7531a2420ef1a4da8ea21505e /src
parenta70f9ebd49728bbc787195f91f8867fab990b289 (diff)
downloadopenbsd-284cec1ce7c7ed0e18b6e22403d6d8c4ce99b1be.tar.gz
openbsd-284cec1ce7c7ed0e18b6e22403d6d8c4ce99b1be.tar.bz2
openbsd-284cec1ce7c7ed0e18b6e22403d6d8c4ce99b1be.zip
Correct CFLAGS for vax; deraadt says ok.
NB future porters, default is still big endian.
Diffstat (limited to 'src')
-rw-r--r--src/usr.sbin/openssl/Makefile7
1 files changed, 2 insertions, 5 deletions
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}
16.if ${MACHINE_ARCH} == "i386" 16.if ${MACHINE_ARCH} == "i386"
17CFLAGS+= -g -DL_ENDIAN -DBN_ASM 17CFLAGS+= -g -DL_ENDIAN -DBN_ASM
18.else 18.else
19.if ${MACHINE_ARCH} == "arc" 19.if (${MACHINE_ARCH} == "arc") || (${MACHINE_ARCH} == "pmax") || \
20CFLAGS+= -DL_ENDIAN 20 (${MACHINE_ARCH} == "vax")
21.else
22.if ${MACHINE_ARCH} == "pmax"
23CFLAGS+= -DL_ENDIAN 21CFLAGS+= -DL_ENDIAN
24.else 22.else
25.if ${MACHINE_ARCH} == "alpha" 23.if ${MACHINE_ARCH} == "alpha"
@@ -28,7 +26,6 @@ CFLAGS+= -DL_ENDIAN
28CFLAGS+= -DB_ENDIAN 26CFLAGS+= -DB_ENDIAN
29.endif 27.endif
30.endif 28.endif
31.endif
32.endif 29.endif
33 30
34CFLAGS+= -DMONOLITH -DOPENSSL_NO_IDEA -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5 31CFLAGS+= -DMONOLITH -DOPENSSL_NO_IDEA -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5