diff options
author | he <he@pkgsrc.org> | 2008-12-20 23:38:37 +0000 |
---|---|---|
committer | he <he@pkgsrc.org> | 2008-12-20 23:38:37 +0000 |
commit | 2dc51126e80b167137ef8c98b311733d1a2a5352 (patch) | |
tree | 630e041b5b7f462df0635a20e53b59606eaf1307 /devel/p5-Inline/patches | |
parent | 4a69b1ef35704d3f62a1976e7c6b178bb972ff0b (diff) | |
download | pkgsrc-2dc51126e80b167137ef8c98b311733d1a2a5352.tar.gz |
Update from version 0.44nb3 to 0.45.
Pkgsrc changes:
o Update dependencies with version information culled from META.yml
o Re-do the patch to include Inline::C without prompting
Upstream changes:
version: 0.45
date: Sat Nov 22 2008
No changes from 0.44_01
version: 0.44_01
date: Tues Oct 11 2008
changes:
- Apply patch to Inline.pm that addresses a problem with whitespace occurring
in the name of the build directory. (RT ticket 4150)
- Fix ParseRegExp.pm. (RT ticket 6327)
- Fix (in Inline.pm) problem regarding the calling of the same script from
different builds of perl. (RT ticket 29326)
- Allow Inline::install() subroutine to apply to languages other than C and
CPP. (RT ticket 35517)
- Fix C/Makefile.PL so that the C compiler can still be found when $Config{cc}
reports something like /some/place/cc. (RT ticket 8251)
- In C/C.pm, allow for the calling of multiple typemaps (RT ticket 5639), and
have the "No Inline C functions bound to Perl" warning specify the file for
which no bindings were found (RT ticket 17774).
- Minor doc fixes.
Diffstat (limited to 'devel/p5-Inline/patches')
-rw-r--r-- | devel/p5-Inline/patches/patch-aa | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/devel/p5-Inline/patches/patch-aa b/devel/p5-Inline/patches/patch-aa index 7a3e7b6633e..f0a1195f566 100644 --- a/devel/p5-Inline/patches/patch-aa +++ b/devel/p5-Inline/patches/patch-aa @@ -1,25 +1,25 @@ -$NetBSD: patch-aa,v 1.1.1.1 2002/09/01 22:39:23 kim Exp $ +$NetBSD: patch-aa,v 1.2 2008/12/20 23:38:37 he Exp $ Include Inline::C without prompting. ---- C/Makefile.PL.orig Wed Jun 13 00:27:13 2001 -+++ C/Makefile.PL Sun Aug 18 17:58:40 2002 -@@ -51,12 +51,12 @@ - # ' - } - --my $answer = ''; --my $default = $found ? "y" : "n"; --while (1) { -- $answer = prompt ('Do you want to install Inline::C?', $default); -- last if $answer =~ /^(y|yes|n|no)$/i; --} -+my $answer = 'y'; -+#my $default = $found ? "y" : "n"; -+#while (1) { -+# $answer = prompt ('Do you want to install Inline::C?', $default); -+# last if $answer =~ /^(y|yes|n|no)$/i; -+#} - - if ($answer =~ /^(y|yes)$/i) { - WriteMakefile( +--- C/Makefile.PL.orig 2008-11-10 11:35:43.000000000 +0100 ++++ C/Makefile.PL +@@ -58,12 +58,12 @@ END
+ # '
+ }
+
+-my $answer = '';
+-my $default = $found ? "y" : "n";
+-while (1) {
+- $answer = prompt ('Do you want to install Inline::C?', $default);
+- last if $answer =~ /^(y|yes|n|no)$/i;
+-}
++my $answer = 'y';
++#my $default = $found ? "y" : "n";
++#while (1) {
++# $answer = prompt ('Do you want to install Inline::C?', $default);
++# last if $answer =~ /^(y|yes|n|no)$/i;
++#}
+
+ if ($answer =~ /^(y|yes)$/i) {
+ WriteMakefile(
|