summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/perl_modules/perl-xml-sax/perl-xml-sax.patch
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2010-10-23 18:17:40 (GMT)
committerJames Meyer <james.meyer@operamail.com>2010-10-23 18:19:39 (GMT)
commitadbcf19958300e9b6598990184c8815b945ba0ee (patch)
treef4283c850ac0ac202c17e78a637ee7ca8147621b /abs/core-testing/perl_modules/perl-xml-sax/perl-xml-sax.patch
parent61a68250df10d29b624650948484898334ff22d0 (diff)
downloadlinhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.zip
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.gz
linhes_pkgbuild-adbcf19958300e9b6598990184c8815b945ba0ee.tar.bz2
Removed old core and extra from repo. Renamed -testing to core/extra. This will setup the base for the testing branch.
Diffstat (limited to 'abs/core-testing/perl_modules/perl-xml-sax/perl-xml-sax.patch')
-rw-r--r--abs/core-testing/perl_modules/perl-xml-sax/perl-xml-sax.patch45
1 files changed, 0 insertions, 45 deletions
diff --git a/abs/core-testing/perl_modules/perl-xml-sax/perl-xml-sax.patch b/abs/core-testing/perl_modules/perl-xml-sax/perl-xml-sax.patch
deleted file mode 100644
index 88e653d..0000000
--- a/abs/core-testing/perl_modules/perl-xml-sax/perl-xml-sax.patch
+++ /dev/null
@@ -1,45 +0,0 @@
---- XML-SAX-0.16/Makefile.PL.orig 2008-04-08 10:36:43.718155829 +0200
-+++ XML-SAX-0.16/Makefile.PL 2008-04-08 10:37:17.347001804 +0200
-@@ -12,42 +12,3 @@
- },
- );
-
--sub MY::install {
-- package MY;
-- my $script = shift->SUPER::install(@_);
--
-- # Only modify existing ParserDetails.ini if user agrees
--
-- my $write_ini_ok = 0;
--
-- eval { require XML::SAX };
-- if ($@) {
-- $write_ini_ok = 1;
-- }
-- else {
-- 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;
-- }
-- else {
-- $write_ini_ok = 1;
-- }
-- }
--
-- if ($write_ini_ok) {
-- $script =~ s/install :: (.*)$/install :: $1 install_sax_pureperl/m;
-- $script .= <<"INSTALL";
--
--install_sax_pureperl :
--\t\@\$(PERL) -MXML::SAX -e "XML::SAX->add_parser(q(XML::SAX::PurePerl))->save_parsers()"
--
--INSTALL
--
-- }
--
-- return $script;
--}
--