summaryrefslogtreecommitdiff
path: root/textproc/p5-XML-SAX/patches/patch-aa
diff options
context:
space:
mode:
authorwiz <wiz>2007-02-27 14:03:58 +0000
committerwiz <wiz>2007-02-27 14:03:58 +0000
commit258609817a234e7218cfb15376712a33ff4a5e4c (patch)
tree188d52bf2fc21083918601984145b8f7961b5595 /textproc/p5-XML-SAX/patches/patch-aa
parentcdb898d5f111a5fd1b58e49c5985b0f6de29bfe6 (diff)
downloadpkgsrc-258609817a234e7218cfb15376712a33ff4a5e4c.tar.gz
Update to 0.15:
0.15 08 Feb 2007 Grant McLean - Fixed handling of entities in attribute values - Cleaned up some benign warnings 0.14 23 Apr 2006 Matt Sergeant - Fixed CDATA section parsing (Uwe Voelker) - Fix Makefile.PL for VMS - Support calling set_handler() mid-parse - Fix for when random modules overload UNIVERSAL::AUTOLOAD() - Fix case when ParserDetails.ini isn't being updated but we are doing an upgrade. 0.13 24 Oct 2005 Matt Sergeant - Complete re-write of XML::SAX::PurePerl for performance - Support Encoding & XMLVersion in DocumentLocator interface - A few conformance tweaks to match perl SAX 2.1.
Diffstat (limited to 'textproc/p5-XML-SAX/patches/patch-aa')
-rw-r--r--textproc/p5-XML-SAX/patches/patch-aa36
1 files changed, 16 insertions, 20 deletions
diff --git a/textproc/p5-XML-SAX/patches/patch-aa b/textproc/p5-XML-SAX/patches/patch-aa
index 620337dc15c..8c6d589ec04 100644
--- a/textproc/p5-XML-SAX/patches/patch-aa
+++ b/textproc/p5-XML-SAX/patches/patch-aa
@@ -1,22 +1,18 @@
-$NetBSD: patch-aa,v 1.1.1.1 2002/01/30 22:16:50 mjl Exp $
+$NetBSD: patch-aa,v 1.2 2007/02/27 14:03:58 wiz Exp $
---- Makefile.PL.orig Tue Jan 29 07:05:23 2002
+--- Makefile.PL.orig 2006-04-24 00:14:03.000000000 +0000
+++ Makefile.PL
-@@ -12,7 +12,7 @@
- sub MY::install {
- package MY;
- my $script = shift->SUPER::install(@_);
-- if (ExtUtils::MakeMaker::prompt("Do you want XML::SAX to alter ParserDetails.ini?", "Y") =~ /^y/i) {
-+# if (ExtUtils::MakeMaker::prompt("Do you want XML::SAX to alter ParserDetails.ini?", "Y") =~ /^y/i) {
- $script =~ s/install :: (.*)$/install :: $1 install_sax_pureperl/m;
- $script .= <<"INSTALL";
-
-@@ -21,7 +21,7 @@
-
- INSTALL
-
-- }
-+# }
-
- return $script;
- }
+@@ -28,9 +28,10 @@ sub MY::install {
+ my $dir = File::Basename::dirname($INC{'XML/SAX.pm'});
+ if (-e File::Spec->catfile($dir, 'SAX', 'ParserDetails.ini')) {
+ $write_ini_ok =
+- ExtUtils::MakeMaker::prompt(
+- "Do you want XML::SAX to alter ParserDetails.ini?", "Y"
+- ) =~ /^y/i;
++ 1;
++# ExtUtils::MakeMaker::prompt(
++# "Do you want XML::SAX to alter ParserDetails.ini?", "Y"
++# ) =~ /^y/i;
+ }
+ else {
+ $write_ini_ok = 1;