diff options
author | 2002-12-10 16:58:12 +0000 | |
---|---|---|
committer | 2002-12-10 16:58:12 +0000 | |
commit | d4b4b572f98abd8d212acbb3de8b742d9f85aac8 (patch) | |
tree | 43a6a076a5ac32e6043a0c16451f2689b739e46e | |
parent | check IFF_RUNNING early in bstp_transmit_tcn; from netbsd; ok jason@ (diff) | |
download | wireguard-openbsd-d4b4b572f98abd8d212acbb3de8b742d9f85aac8.tar.xz wireguard-openbsd-d4b4b572f98abd8d212acbb3de8b742d9f85aac8.zip |
-O1 on alpha for now
ok theo
-rw-r--r-- | usr.sbin/httpd/Makefile.bsd-wrapper | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/httpd/Makefile.bsd-wrapper b/usr.sbin/httpd/Makefile.bsd-wrapper index 2a0a89d6f7e..26cdd079544 100644 --- a/usr.sbin/httpd/Makefile.bsd-wrapper +++ b/usr.sbin/httpd/Makefile.bsd-wrapper @@ -1,5 +1,5 @@ # Build wrapper for Apache -# $OpenBSD: Makefile.bsd-wrapper,v 1.36 2002/11/22 13:03:34 naddy Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.37 2002/12/10 16:58:12 henning Exp $ # Our lndir is hacked; specify a full path to avoid potential conflicts # with the one installed with X11. @@ -788,6 +788,10 @@ ICONFILES= \ .include <bsd.own.mk> +.if ${MACHINE_ARCH} == "alpha" +COPTS+=-O1 +.endif + all: prereq @cd ${.OBJDIR} && ${MAKE} |