summaryrefslogtreecommitdiff
path: root/src/usr.sbin/openssl/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr.sbin/openssl/Makefile')
-rw-r--r--src/usr.sbin/openssl/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr.sbin/openssl/Makefile b/src/usr.sbin/openssl/Makefile
index 0acdf58594..0413ca3117 100644
--- a/src/usr.sbin/openssl/Makefile
+++ b/src/usr.sbin/openssl/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.15 2004/01/28 17:46:05 deraadt Exp $ 1# $OpenBSD: Makefile,v 1.16 2004/02/27 17:36:18 deraadt Exp $
2 2
3PROG= openssl 3PROG= openssl
4LDADD= -lssl -lcrypto 4LDADD= -lssl -lcrypto
@@ -9,8 +9,8 @@ SSLEAYDIST= lib/libssl/src
9SSLEAY_SRC= ${.CURDIR}/../../${SSLEAYDIST}/apps 9SSLEAY_SRC= ${.CURDIR}/../../${SSLEAYDIST}/apps
10SSLEAY_SRC_TOP= ${.CURDIR}/../../${SSLEAYDIST} 10SSLEAY_SRC_TOP= ${.CURDIR}/../../${SSLEAYDIST}
11 11
12.if (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "x86_64") || \ 12.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "vax" || \
13 (${MACHINE_ARCH} == "vax") 13 ${MACHINE_ARCH} == "amd64"
14 14
15CFLAGS+= -DL_ENDIAN 15CFLAGS+= -DL_ENDIAN
16.else 16.else