BROKEN on 5.x: Configure fails

Approved by:    portmgr (self)
This commit is contained in:
Kris Kennaway 2004-09-26 01:46:00 +00:00
parent dc34d47840
commit 0780800c87
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=118400
2 changed files with 14 additions and 2 deletions

View File

@ -29,7 +29,13 @@ CONFIGURE_ARGS+= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} \
--with-hk_classes-dir=${LOCALBASE}/lib/hk_classes \
--with-hk_classes-incdir=${LOCALBASE}/include/hk_classes
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 502126
BROKEN= "Configure fails on FreeBSD >= 5.x"
.endif
post-patch:
${REINPLACE_CMD} -e 's,-pedantic ,,' ${WRKSRC}/configure
.include <bsd.port.mk>
.include <bsd.port.post.mk>

View File

@ -30,4 +30,10 @@ CPPFLAGS= -I${LOCALBASE}/include -I${X11BASE}/include ${PTHREAD_CFLAGS}
LDFLAGS= -L${LOCALBASE}/lib -L${X11BASE}/lib -lGL -lGLU \
${PTHREAD_LIBS}
.include <bsd.port.mk>
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 50126
BROKEN= "Configure fails on FreeBSD >= 5.x"
.endif
.include <bsd.port.post.mk>