| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- Index: Embperl-2.3.0/Makefile.PL
- --- Embperl-2.3.0/Makefile.PL.orig 2007-09-29 13:05:56.000000000 +0200
- +++ Embperl-2.3.0/Makefile.PL 2011-02-18 09:06:23.000000000 +0100
- @@ -625,7 +625,7 @@
- $base = $ENV{'ProgramFiles'} if ($win32) ;
-
-
- -$apache = GetYesNo ("Build with support for Apache mod_perl?", 'y') if (!$apache) ;
- +$apache = 0;
-
- if ($apache && $apache_src ne '')
- {
- @@ -1334,7 +1334,7 @@
- 'LIBS' => [$libs || ''],
- 'DEFINE' => "$d \$(DEFS)",
- 'INC' => $i,
- - 'EXE_FILES' => [ 'embpexec.pl', 'embpmsgid.pl' ],
- + 'EXE_FILES' => [ 'embpexec.pl', 'embpmsgid.pl', 'embpcgi.pl' ],
- 'clean' => { FILES => 'dirent.h test/conf/httpd.conf test/conf/httpd.stop.conf test/conf/httpd.min.conf test/tmp/* Embperl.c $(OBJECT)' },
- 'realclean' => { FILES => 'embpmsgid.pl embpexec.pl embpexec.bat embpcgi.pl embpcgi.test.pl embpcgi.bat epocgi.pl epocgi.bat epocgi.test.pl embpfastcgi.pl embpfastcgi.test.pl test/conf/config.pl xs/mmargs.pl' },
- 'dist' => { COMPRESS => 'gzip', SUFFIX => 'gz'},
- Index: Embperl-2.3.0/driver/epxalan.MAKEPL
- --- Embperl-2.3.0/driver/epxalan.MAKEPL.orig 2005-10-26 00:16:36.000000000 +0200
- +++ Embperl-2.3.0/driver/epxalan.MAKEPL 2011-02-18 09:06:23.000000000 +0100
- @@ -8,7 +8,7 @@
-
- if (!$win32)
- {
- - $path = $ENV{XALANPATH} || GetString ("Enter path of XALAN base directory or single dot for not using XALAN", $XALANPATH || '.') ;
- + $path = ".";
-
- if (!$path || $path eq '.')
- {
- Index: Web-Scraper-0.33/Makefile.PL
- --- Web-Scraper-0.33/Makefile.PL.orig 2011-02-17 18:14:26.000000000 +0100
- +++ Web-Scraper-0.33/Makefile.PL 2011-02-18 09:06:48.000000000 +0100
- @@ -12,9 +12,9 @@
- requires 'HTML::Tagset';
- requires 'UNIVERSAL::require';
- requires 'URI';
- -requires 'YAML';
- +#requires 'YAML';
-
- -feature 'LibXML', -default => 1, 'HTML::TreeBuilder::LibXML', 0.04;
- +feature 'LibXML', -default => 0, 'HTML::TreeBuilder::LibXML', 0.04;
-
- build_requires 'Test::More';
- build_requires 'Test::Base';
|