8
0

Accepting request 185907 from devel:languages:perl

- add avoid-broken-provides.diff to avoid package providing
  HTTP::Request::Common, which it does not (only for testing)

OBS-URL: https://build.opensuse.org/request/show/185907
OBS-URL: https://build.opensuse.org/package/show/Apache:Modules/apache2-mod_perl?expand=0&rev=44
This commit is contained in:
Factory Maintainer
2013-08-07 19:15:30 +00:00
committed by Git OBS Bridge
parent 44b8f27708
commit 45d1864d55
3 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
--- httpd24/Apache-Test/lib/Apache/TestRequest.pm
+++ httpd24/Apache-Test/lib/Apache/TestRequest.pm
@@ -43,7 +43,8 @@ unless ($ENV{APACHE_TEST_PRETEND_NO_LWP}
require HTTP::Request::Common;
unless (defined &HTTP::Request::Common::OPTIONS) {
- package HTTP::Request::Common;
+ package
+ HTTP::Request::Common;
no strict 'vars';
*OPTIONS = sub { _simple_req(OPTIONS => @_) };
push @EXPORT, 'OPTIONS';