diff options
author | 2004-01-28 17:46:05 +0000 | |
---|---|---|
committer | 2004-01-28 17:46:05 +0000 | |
commit | ef1d0a60b11c8067e12de518e365a443af86dddc (patch) | |
tree | b13dc119ff6a63759aca9223558c01477a411760 | |
parent | Repair build links for pegosos, and also build for amd64 (diff) | |
download | wireguard-openbsd-ef1d0a60b11c8067e12de518e365a443af86dddc.tar.xz wireguard-openbsd-ef1d0a60b11c8067e12de518e365a443af86dddc.zip |
label x86_64 as LE
-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" |