diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-01-28 17:46:06 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-01-28 17:46:06 +0000 |
commit | 84b5f436fd54ca2f315fbc8e215c74d35ef836b5 (patch) | |
tree | 2023742a01689ee5ebc5cb810227516607bd5d9b /usr.sbin/openssl/Makefile | |
parent | 52947c01f9dcc612e4c0479d4a0f23163dd8b925 (diff) |
label x86_64 as LE
Diffstat (limited to 'usr.sbin/openssl/Makefile')
-rw-r--r-- | usr.sbin/openssl/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.sbin/openssl/Makefile b/usr.sbin/openssl/Makefile index d8f94326b9b..0acdf585948 100644 --- a/usr.sbin/openssl/Makefile +++ b/usr.sbin/openssl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.14 2003/11/12 21:15:03 markus Exp $ +# $OpenBSD: Makefile,v 1.15 2004/01/28 17:46:05 deraadt Exp $ PROG= openssl LDADD= -lssl -lcrypto @@ -9,8 +9,9 @@ SSLEAYDIST= lib/libssl/src SSLEAY_SRC= ${.CURDIR}/../../${SSLEAYDIST}/apps SSLEAY_SRC_TOP= ${.CURDIR}/../../${SSLEAYDIST} -.if (${MACHINE_ARCH} == "arc") || (${MACHINE_ARCH} == "i386") || \ - (${MACHINE_ARCH} == "vax") || (${MACHINE_ARCH} == "pmax") +.if (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "x86_64") || \ + (${MACHINE_ARCH} == "vax") + CFLAGS+= -DL_ENDIAN .else .if ${MACHINE_ARCH} == "alpha" |