From 75c3b2d2e6ae84ad1232686b18e5e88996c2cbbe Mon Sep 17 00:00:00 2001 From: deraadt <> Date: Fri, 27 Feb 2004 17:36:18 +0000 Subject: change amd64's MACHINE_ARCH from x86_64 to amd64. There are many many reasons for this, quite a few of them technical, and not all of them in response to Intel's broken ia32e crud. The gcc toolchain stays at x86_64 for now. --- src/usr.sbin/openssl/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/usr.sbin/openssl') 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 @@ -# $OpenBSD: Makefile,v 1.15 2004/01/28 17:46:05 deraadt Exp $ +# $OpenBSD: Makefile,v 1.16 2004/02/27 17:36:18 deraadt Exp $ PROG= openssl LDADD= -lssl -lcrypto @@ -9,8 +9,8 @@ SSLEAYDIST= lib/libssl/src SSLEAY_SRC= ${.CURDIR}/../../${SSLEAYDIST}/apps SSLEAY_SRC_TOP= ${.CURDIR}/../../${SSLEAYDIST} -.if (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "x86_64") || \ - (${MACHINE_ARCH} == "vax") +.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "vax" || \ + ${MACHINE_ARCH} == "amd64" CFLAGS+= -DL_ENDIAN .else -- cgit v1.2.3-55-g6feb