diff options
Diffstat (limited to 'lang/perl5/hacks.mk')
-rw-r--r-- | lang/perl5/hacks.mk | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/lang/perl5/hacks.mk b/lang/perl5/hacks.mk index 1aa7403fbdb..7e11c5008d2 100644 --- a/lang/perl5/hacks.mk +++ b/lang/perl5/hacks.mk @@ -1,4 +1,4 @@ -# $NetBSD: hacks.mk,v 1.2 2005/12/05 20:50:26 rillig Exp $ +# $NetBSD: hacks.mk,v 1.3 2006/04/09 06:34:32 jlam Exp $ .include "../../mk/compiler.mk" @@ -35,22 +35,6 @@ PKG_HACKS+= powerpc-codegen BUILDLINK_TRANSFORM+= rm:-O[0-9]* .endif -### [Fri Dec 10 18:09:51 EST 2004 : jlam] -### On VAX, feeding a base "NaN" to nawk causes nawk to core dump since -### it tries to interpret it as a number, which causes an FP exception. -### Modify files that pass through nawk to not have bare "NaN"s. -### -.if !empty(MACHINE_PLATFORM:M*-*-vax) -PKG_HACKS+= NaN-vax-exception -.PHONY: NaN-vax-exception -pre-configure: NaN-vax-exception -NaN-vax-exception: - cd ${WRKSRC}; for file in MANIFEST; do \ - ${MV} $$file $$file.NaN; \ - ${SED} -e "s,NaN,*NaN*,g" $$file.NaN > $$file; \ - done -.endif - ### [Fri Dec 10 18:46:19 EST 2004 : jlam] ### On NetBSD/alpha, building perl with -mieee causes perl to not pass ### the test for integer.pm (pkg/28498). Until this is fixed in either |