SHA256
1
0
forked from pool/apache2

Accepting request 39834 from Apache

checked in (request 39834)

OBS-URL: https://build.opensuse.org/request/show/39834
OBS-URL: https://build.opensuse.org/package/show/Apache/apache2?expand=0&rev=315
This commit is contained in:
OBS User autobuild 2010-05-12 08:47:28 +00:00 committed by Git OBS Bridge
parent 47abd4db5b
commit c24bb91de9
3 changed files with 0 additions and 29 deletions

View File

@ -1,9 +1,3 @@
-------------------------------------------------------------------
Tue May 11 21:42:11 UTC 2010 - lars@linux-schulserver.de
- fix deprecated usage of $[ in apxs2
(httpd-2.2.15-deprecated_use_of_build_in_variable.patch)
------------------------------------------------------------------- -------------------------------------------------------------------
Fri May 7 12:38:10 UTC 2010 - aj@suse.de Fri May 7 12:38:10 UTC 2010 - aj@suse.de

View File

@ -120,8 +120,6 @@ Patch66: httpd-2.0.54-envvars.dif
Patch67: httpd-2.2.0-apxs-a2enmod.dif Patch67: httpd-2.2.0-apxs-a2enmod.dif
Patch68: httpd-2.x.x-logresolve.patch Patch68: httpd-2.x.x-logresolve.patch
Patch100: apache2.2-mpm-itk-20090414-00.patch Patch100: apache2.2-mpm-itk-20090414-00.patch
# PATCH-FIX-UPSTREAM fix deprecated usage of $[ in apxs2
Patch101: httpd-2.2.15-deprecated_use_of_build_in_variable.patch
Url: http://httpd.apache.org/ Url: http://httpd.apache.org/
Icon: Apache.xpm Icon: Apache.xpm
Summary: The Apache Web Server Version 2.0 Summary: The Apache Web Server Version 2.0

View File

@ -1,21 +0,0 @@
Index: support/apxs.in
===================================================================
--- support/apxs.in.orig
+++ support/apxs.in
@@ -83,7 +83,6 @@ sub Getopts {
my ($argumentative, @ARGV) = @_;
my $errs = 0;
local $_;
- local $[ = 0;
my @args = split / */, $argumentative;
while (@ARGV && ($_ = $ARGV[0]) =~ /^-(.)(.*)/) {
@@ -93,7 +92,7 @@ sub Getopts {
last;
}
my $pos = index($argumentative,$first);
- if ($pos >= $[) {
+ if ($pos >= 0) {
if ($pos < $#args && $args[$pos+1] eq ':') {
shift @ARGV;
if ($rest eq '') {