diff options
author | jlam <jlam@pkgsrc.org> | 2001-09-14 05:00:35 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2001-09-14 05:00:35 +0000 |
commit | 71f03aac0769866c39755e2e0ea56050ca4f5908 (patch) | |
tree | 19507c963efe86967682b6f03b464316b77c3d54 /lang/perl5 | |
parent | e9c4dfab6a43aa0af6a59b338c5f2a020c50b82d (diff) | |
download | pkgsrc-71f03aac0769866c39755e2e0ea56050ca4f5908.tar.gz |
Search for <machine/ieeefp.h> instead of <ieeefp.h>. This fixes the
problem reported in pkg/13663 by John Klos <john@sixgirls.org> where on
older (pre-current) NetBSD/vax, <ieeefp.h> exists but <machine/ieeefp.h>
doesn't, which was broken since <ieeefp.h> included <machine/ieeefp.h>.
Diffstat (limited to 'lang/perl5')
-rw-r--r-- | lang/perl5/distinfo | 4 | ||||
-rw-r--r-- | lang/perl5/patches/patch-aa | 22 |
2 files changed, 18 insertions, 8 deletions
diff --git a/lang/perl5/distinfo b/lang/perl5/distinfo index 5c483bab0c9..66ff170a0c4 100644 --- a/lang/perl5/distinfo +++ b/lang/perl5/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.2 2001/09/12 18:58:57 jlam Exp $ +$NetBSD: distinfo,v 1.3 2001/09/14 05:00:35 jlam Exp $ SHA1 (perl-5.6.1.tar.gz) = c718b38685f90d51a9a6b1b008de0d7d198c0744 Size (perl-5.6.1.tar.gz) = 5983695 bytes -SHA1 (patch-aa) = 7b235dd5f4939f3b21789996514d165877cdea4d +SHA1 (patch-aa) = 6538191502ddee841fe5f0202b33d642688c9a54 SHA1 (patch-ab) = 65bbbb0d6a1ddf17bd5d718f0ac741faf37ce408 SHA1 (patch-ac) = dfebafeec171c86de3d6105e5543270a30f82691 SHA1 (patch-ad) = 7a3ca903d958026473f593fdeb172f86f2ef66d2 diff --git a/lang/perl5/patches/patch-aa b/lang/perl5/patches/patch-aa index ad27d4fdaaa..efe6b58010c 100644 --- a/lang/perl5/patches/patch-aa +++ b/lang/perl5/patches/patch-aa @@ -1,17 +1,27 @@ -$NetBSD: patch-aa,v 1.18 2001/09/05 17:13:40 jlam Exp $ +$NetBSD: patch-aa,v 1.19 2001/09/14 05:00:36 jlam Exp $ ---- Configure.orig Sun Mar 18 19:03:33 2001 -+++ Configure Sat Sep 1 14:31:15 2001 -@@ -6807,8 +6807,11 @@ +--- Configure.orig Sun Mar 18 22:03:33 2001 ++++ Configure Fri Sep 14 00:55:04 2001 +@@ -6807,9 +6807,12 @@ aix) # We'll set it in Makefile.SH... ;; - solaris|netbsd) + solaris) xxx="-R $shrpdir" -+ ;; + ;; + netbsd) + xxx="-Wl,-R$shrpdir" - ;; ++ ;; freebsd) xxx="-Wl,-R$shrpdir" + ;; +@@ -14719,7 +14722,7 @@ + eval $inhdr + + : see if this is a ieeefp.h system +-set ieeefp.h i_ieeefp ++set machine/ieeefp.h i_ieeefp + eval $inhdr + + : see if this is a libutil.h system |