diff options
author | dholland <dholland@pkgsrc.org> | 2015-08-10 08:23:48 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2015-08-10 08:23:48 +0000 |
commit | 76548a12b59355206cf4ae3259c77469e94f78b8 (patch) | |
tree | 137a0c1b2194103d90f92963b23f281b4148c8aa /math | |
parent | 95adf64c8da4aff124b6952e223da3200e956620 (diff) | |
download | pkgsrc-76548a12b59355206cf4ae3259c77469e94f78b8.tar.gz |
PR 45271 Joern Clausen: remove old Solaris PIC-related substitution
that nowadays breaks the build.
Diffstat (limited to 'math')
-rw-r--r-- | math/p5-Math-Pari/distinfo | 4 | ||||
-rw-r--r-- | math/p5-Math-Pari/patches/patch-aa | 12 |
2 files changed, 13 insertions, 3 deletions
diff --git a/math/p5-Math-Pari/distinfo b/math/p5-Math-Pari/distinfo index 2f91e203794..5b47e0c9527 100644 --- a/math/p5-Math-Pari/distinfo +++ b/math/p5-Math-Pari/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.19 2011/08/06 20:49:25 adam Exp $ +$NetBSD: distinfo,v 1.20 2015/08/10 08:23:48 dholland Exp $ SHA1 (Math-Pari-2.01080605.tar.gz) = 95a46ba418bf14584925dfae971d598af4214894 RMD160 (Math-Pari-2.01080605.tar.gz) = 2cc1e02f9666873999379f8130262da68a8801b9 Size (Math-Pari-2.01080605.tar.gz) = 122627 bytes -SHA1 (patch-aa) = 3a145ca9bd4bbcbae910a85dd38d985c69b89b17 +SHA1 (patch-aa) = 89de98c7c993654087faf4130509bbd70c5f8b24 SHA1 (patch-ab) = 32ddc27824bbb5ac88adc0dece0f436044b8d9c7 diff --git a/math/p5-Math-Pari/patches/patch-aa b/math/p5-Math-Pari/patches/patch-aa index 45fdf2a88f0..b023caf0abe 100644 --- a/math/p5-Math-Pari/patches/patch-aa +++ b/math/p5-Math-Pari/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.5 2010/03/10 09:24:52 sno Exp $ +$NetBSD: patch-aa,v 1.6 2015/08/10 08:23:49 dholland Exp $ --- Makefile.PL.orig 2010-03-03 21:26:10.000000000 +0000 +++ Makefile.PL @@ -246,3 +246,13 @@ $NetBSD: patch-aa,v 1.5 2010/03/10 09:24:52 sno Exp $ } # Rewrite pic option to PIC in CCCDLFLAGS, +@@ -234,7 +83,8 @@ sub MY::const_config + my $self = shift; + my $flags = $self->{'CCCDLFLAGS'}; # Tmp var needed with Perl4 ! + $flags =~ s/(-[fK]?\s*)pic\b/${1}PIC/; +- $flags =~ s/-KPIC/-K PIC/; # Apparently (was?) needed on Solaris... ++ # Nowadays breaks build; see PR 45271 ++ #$flags =~ s/-KPIC/-K PIC/; # Apparently (was?) needed on Solaris... + $self->{'CCCDLFLAGS'} = $flags; + if ($^O eq 'MSWin32' && $Config{'ccflags'} =~ /-DPERL_OBJECT/) + { |