5107ce8c17
XML::SAX is a SAX parser access API for Perl. It includes classes and APIs required for implementing SAX drivers, along with a factory class for returning any SAX parser installed on the user's system. Older version (0.6) provided by Shell Hung in PR/15087.
22 lines
617 B
Text
22 lines
617 B
Text
$NetBSD: patch-aa,v 1.1.1.1 2002/01/30 22:16:50 mjl Exp $
|
|
|
|
--- Makefile.PL.orig Tue Jan 29 07:05:23 2002
|
|
+++ 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;
|
|
}
|