1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00

BROKEN on !i386 and on 4.x: Does not compile

This commit is contained in:
Kris Kennaway 2006-04-22 22:11:33 +00:00
parent 298c3e6f4e
commit 89053f4a8e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=160171
2 changed files with 19 additions and 1 deletions

View File

@ -38,6 +38,14 @@ OPTIONS= OPTIMIZED_CFLAGS "Build with extra optimization options" on
.include <bsd.port.pre.mk>
.if ${ARCH} != "i386"
BROKEN= Does not compile on ${ARCH}
.endif
.if ${OSVERSION} < 500000
BROKEN= Does not compile on 4.x
.endif
.if defined(WITH_OPTIMIZED_CFLAGS)
CFLAGS= -O6 -fomit-frame-pointer -ffast-math -falign-loops=2 -falign-jumps=2 \
-falign-functions=2 -fno-strict-aliasing -fstrength-reduce

View File

@ -38,6 +38,16 @@ MAN1= wwwoffle.1
MAN5= wwwoffle.conf.5
MAN8= wwwoffled.8
.include <bsd.port.pre.mk>
.if ${ARCH} != "i386"
BROKEN= Does not compile on ${ARCH}
.endif
.if ${OSVERSION} < 500000
BROKEN= Does not compile on 4.x
.endif
.if ${WWWOFFLE_SPOOL} != "/var/spool/wwwoffle"
# If using a non-standard spool, change all the documentation (and anything
# else) to reflect that.
@ -53,4 +63,4 @@ post-install:
@${INSTALL_SCRIPT} ${WRKSRC}/conf/upgrade-config.pl ${WWWOFFLE_SPOOL}
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
.include <bsd.port.post.mk>