diff options
author | edwin <edwin@FreeBSD.org> | 2003-08-23 20:50:48 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-08-23 20:50:48 +0800 |
commit | f46d41fd0c87d81adaec850f72a612cabe84321c (patch) | |
tree | 49a1e4f9f7fdfa35d3301e1f535882910450484d /lang | |
parent | abc3b832fd85df3e39a2fde3787fc8aa07c008a4 (diff) | |
download | freebsd-ports-gnome-f46d41fd0c87d81adaec850f72a612cabe84321c.tar.gz freebsd-ports-gnome-f46d41fd0c87d81adaec850f72a612cabe84321c.tar.zst freebsd-ports-gnome-f46d41fd0c87d81adaec850f72a612cabe84321c.zip |
Fix to ports/lang/ici build problem on 5-CURRENT
Patch to fix build failures of lang/ici port on 5-CURRENT.
Note this is UNTESTED (my 5-CURRENT machine disappeared
last week) but the same fix was required on other gcc 3.x
using platforms (Mac OS X) and I am assuming it will repair
the brokeness.
Honestly, the patch didn't but a quick search/replace of "float_t"
to "floats_t" did. Informed maintainer.
PR: ports/52444
Submitted by: Andy Newman <atrn@zeta.org.au>
Diffstat (limited to 'lang')
-rw-r--r-- | lang/ici/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/ici/Makefile b/lang/ici/Makefile index 8cadcb0c714b..12978310e28e 100644 --- a/lang/ici/Makefile +++ b/lang/ici/Makefile @@ -17,6 +17,7 @@ MAKEFILE= Makefile.bsd MAN1= ici3.1 MANCOMPRESSED= yes +USE_REINPLACE= yes USE_BZIP2= yes ICIHDRS= alloc.h array.h buf.h catch.h cfunc.h conf-bsd.h exec.h file.h \ @@ -30,9 +31,8 @@ ICIDOCS= doc/ici-a4.ps doc/ici-ltr.ps doc/ici.txt doc/ici.pdf .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 500113 -BROKEN= "Does not compile" -.endif +post-patch: + ${REINPLACE_CMD} -e 's/float_t/floats_t/g' ${WRKSRC}/* do-install: cd ${WRKSRC} && ${MAKE} -f ${MAKEFILE} libici3.a |