diff options
author | arved <arved@FreeBSD.org> | 2003-11-21 11:35:04 +0000 |
---|---|---|
committer | arved <arved@FreeBSD.org> | 2003-11-21 11:35:04 +0000 |
commit | 073579c66946ecd6b588eb18b04fc6e8f945feed (patch) | |
tree | 8f57faa6f638169e5b4de183ac50a0b04d99022f /graphics | |
parent | 2b8a63fb001ec211ca033f180d779db80cc8df41 (diff) | |
download | FreeBSD-ports-073579c66946ecd6b588eb18b04fc6e8f945feed.zip FreeBSD-ports-073579c66946ecd6b588eb18b04fc6e8f945feed.tar.gz |
Fix build on 5.x by removing -pedantic
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/ray++/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/ray++/Makefile b/graphics/ray++/Makefile index 702e5e3..6177cfa 100644 --- a/graphics/ray++/Makefile +++ b/graphics/ray++/Makefile @@ -18,12 +18,12 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-shared --enable-fast-handles USE_GMAKE= yes INSTALLS_SHLIB= yes +USE_REINPLACE= yes .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 501000 -BROKEN= "Does not compile on FreeBSD ${OSVERSION}" -.endif +post-patch: + ${REINPLACE_CMD} -e "s,-pedantic,," ${WRKSRC}/configure do-install: @(cd ${WRKSRC} ; \ |