diff options
author | beech <beech@FreeBSD.org> | 2007-10-07 10:37:49 +0800 |
---|---|---|
committer | beech <beech@FreeBSD.org> | 2007-10-07 10:37:49 +0800 |
commit | df212ea665e32c331f1268d5b03dbb0dcca46137 (patch) | |
tree | b7adb861fd7eaf21eaa738c664103b0a291ab09d | |
parent | ca1ac66e36da3dd1cb8eda2f2987ed214b7df2c6 (diff) | |
download | freebsd-ports-gnome-df212ea665e32c331f1268d5b03dbb0dcca46137.tar.gz freebsd-ports-gnome-df212ea665e32c331f1268d5b03dbb0dcca46137.tar.zst freebsd-ports-gnome-df212ea665e32c331f1268d5b03dbb0dcca46137.zip |
- Fix build with gcc-4.2
Approved by: Shaun Amott <shaun@FreeBSD.org> (maintainer),
sat (mentor, implicit
-rw-r--r-- | www/quickie/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/www/quickie/Makefile b/www/quickie/Makefile index afaa318d9ae5..42a797defeb8 100644 --- a/www/quickie/Makefile +++ b/www/quickie/Makefile @@ -37,12 +37,12 @@ EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 700042 -BROKEN= Does not compile with GCC 4.2 -.endif - post-patch: @${CP} ${FILESDIR}/freebsd.h ${WRKSRC}/lib + @${REINPLACE_CMD} -e 's|output_html_quote::name()|name()|' \ + ${WRKSRC}/lib/output/html_quote.h + @${REINPLACE_CMD} -e 's|input_uudecode::read_inner|read_inner|' \ + ${WRKSRC}/lib/input/uudecode.h pre-install: @${MKDIR} ${DATADIR}/admin |