diff options
author | 2003-11-12 21:15:03 +0000 | |
---|---|---|
committer | 2003-11-12 21:15:03 +0000 | |
commit | 25f4f2b8d451e6023c0cb035ede15e7774bf4759 (patch) | |
tree | b30f8150cdc9377cd07f1c9f2142866da9a9fa3b | |
parent | make verb agree with subject, and kill some whitespace; (diff) | |
download | wireguard-openbsd-25f4f2b8d451e6023c0cb035ede15e7774bf4759.tar.xz wireguard-openbsd-25f4f2b8d451e6023c0cb035ede15e7774bf4759.zip |
remove -g for i386
-rw-r--r-- | usr.sbin/openssl/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/usr.sbin/openssl/Makefile b/usr.sbin/openssl/Makefile index b017f9b31d6..d8f94326b9b 100644 --- a/usr.sbin/openssl/Makefile +++ b/usr.sbin/openssl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.13 2003/06/24 16:00:05 mickey Exp $ +# $OpenBSD: Makefile,v 1.14 2003/11/12 21:15:03 markus Exp $ PROG= openssl LDADD= -lssl -lcrypto @@ -9,11 +9,8 @@ SSLEAYDIST= lib/libssl/src SSLEAY_SRC= ${.CURDIR}/../../${SSLEAYDIST}/apps SSLEAY_SRC_TOP= ${.CURDIR}/../../${SSLEAYDIST} -.if ${MACHINE_ARCH} == "i386" -CFLAGS+= -g -DL_ENDIAN -DBN_ASM -.else -.if (${MACHINE_ARCH} == "arc") || (${MACHINE_ARCH} == "pmax") || \ - (${MACHINE_ARCH} == "vax") +.if (${MACHINE_ARCH} == "arc") || (${MACHINE_ARCH} == "i386") || \ + (${MACHINE_ARCH} == "vax") || (${MACHINE_ARCH} == "pmax") CFLAGS+= -DL_ENDIAN .else .if ${MACHINE_ARCH} == "alpha" @@ -22,7 +19,6 @@ CFLAGS+= -DL_ENDIAN CFLAGS+= -DB_ENDIAN .endif .endif -.endif CFLAGS+= -DMONOLITH -DOPENSSL_NO_IDEA -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5 CFLAGS+= -DOPENSSL_NO_MDC2 |