diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-08-23 12:50:48 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-08-23 12:50:48 +0000 |
commit | f74af8c62f218a0d352d622da9f57fa8fe05c558 (patch) | |
tree | d0a611727951546b9c4e52471579f9bdea4f5ef3 /lang/ici/Makefile | |
parent | Port upgrade: sysutils/LinNeighborhood to 0.6.5_1 (diff) |
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 '')
-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 |