svnweb.patch 1.2 KB

123456789101112131415161718192021222324252627
  1. Index: Build.PL
  2. --- Build.PL.orig 2007-04-29 21:22:51 +0200
  3. +++ Build.PL 2008-10-26 13:17:31 +0100
  4. @@ -147,16 +147,16 @@
  5. my $skip_questions = 0;
  6. -GetOptions('with_mod_perl' => sub { $requires{'Apache::Request'} = 0; },
  7. - 'run_apache_tests' => \$feature{run_apache_tests},
  8. +GetOptions('with_mod_perl!' => sub { $requires{'Apache::Request'} = 0; },
  9. + 'run_apache_tests!' => \$feature{run_apache_tests},
  10. 'apache_path=s' => \$config_data{apache_path},
  11. 'apxs_path=s' => \$config_data{apxs_path},
  12. - 'run_apache_cgi_tests' => \$feature{run_apache_cgi_tests},
  13. - 'run_mod_perl_tests' => \$feature{run_mod_perl_tests},
  14. + 'run_apache_cgi_tests!' => \$feature{run_apache_cgi_tests},
  15. + 'run_mod_perl_tests!' => \$feature{run_mod_perl_tests},
  16. 'mod_perl_path=s' => \$config_data{mod_perl_path},
  17. - 'run_svnweb-server_tests' => \$feature{'run_svnweb-server_tests'},
  18. + 'run_svnweb-server_tests!' => \$feature{'run_svnweb-server_tests'},
  19. 'httpd_port=i' => \$config_data{httpd_port},
  20. - 'skip_questions' => \$skip_questions,
  21. + 'skip_questions!' => \$skip_questions,
  22. );