merge
OBS-URL: https://build.opensuse.org/package/show/Apache/apache2?expand=0&rev=318
This commit is contained in:
parent
7085fd9ed8
commit
5540c687fa
@ -1,3 +1,39 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jul 28 12:07:33 UTC 2010 - poeml@cmdline.net
|
||||||
|
|
||||||
|
- update to 2.2.16:
|
||||||
|
SECURITY: CVE-2010-1452 (cve.mitre.org)
|
||||||
|
mod_dav, mod_cache: Fix Handling of requests without a path segment.
|
||||||
|
PR: 49246
|
||||||
|
SECURITY: CVE-2010-2068 (cve.mitre.org)
|
||||||
|
mod_proxy_ajp, mod_proxy_http, mod_reqtimeout: Fix timeout detection
|
||||||
|
for platforms Windows, Netware and OS2. PR: 49417.
|
||||||
|
core:
|
||||||
|
- Filter init functions are now run strictly once per request
|
||||||
|
before handler invocation. The init functions are no longer run
|
||||||
|
for connection filters. PR 49328.
|
||||||
|
mod_filter:
|
||||||
|
- enable it to act on non-200 responses. PR 48377
|
||||||
|
mod_ldap:
|
||||||
|
- LDAP caching was suppressed (and ldap-status handler returns
|
||||||
|
title page only) when any mod_ldap directives were used in VirtualHost
|
||||||
|
context.
|
||||||
|
mod_ssl:
|
||||||
|
- Fix segfault at startup if proxy client certs are shared
|
||||||
|
across multiple vhosts. PR 39915.
|
||||||
|
mod_proxy_http:
|
||||||
|
- Log the port of the remote server in various messages.
|
||||||
|
PR 48812.
|
||||||
|
apxs:
|
||||||
|
- Fix -A and -a options to ignore whitespace in httpd.conf
|
||||||
|
mod_dir:
|
||||||
|
- add FallbackResource directive, to enable admin to specify
|
||||||
|
an action to happen when a URL maps to no file, without resorting
|
||||||
|
to ErrorDocument or mod_rewrite. PR 47184
|
||||||
|
mod_rewrite:
|
||||||
|
- Allow to set environment variables without explicitely
|
||||||
|
giving a value.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon May 17 14:33:47 UTC 2010 - poeml@cmdline.net
|
Mon May 17 14:33:47 UTC 2010 - poeml@cmdline.net
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package apache2 (Version 2.2.15)
|
# spec file for package apache2 (Version 2.2.16)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -62,9 +62,9 @@ BuildRequires: expat-devel
|
|||||||
%define platform_string Linux/%VENDOR
|
%define platform_string Linux/%VENDOR
|
||||||
License: ASLv..
|
License: ASLv..
|
||||||
Group: Productivity/Networking/Web/Servers
|
Group: Productivity/Networking/Web/Servers
|
||||||
%define realver 2.2.15
|
%define realver 2.2.16
|
||||||
Version: 2.2.15
|
Version: 2.2.16
|
||||||
Release: 3
|
Release: 2
|
||||||
#Source0: http://www.apache.org/dist/httpd-%{version}.tar.bz2
|
#Source0: http://www.apache.org/dist/httpd-%{version}.tar.bz2
|
||||||
Source0: http://httpd.apache.org/dev/dist/httpd-%{realver}.tar.bz2
|
Source0: http://httpd.apache.org/dev/dist/httpd-%{realver}.tar.bz2
|
||||||
# Add file to take mtime from it in prep section
|
# Add file to take mtime from it in prep section
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
diff -uNr httpd-2.2.0.orig/support/apxs.in httpd-2.2.0/support/apxs.in
|
Index: httpd-2.2.16/support/apxs.in
|
||||||
--- httpd-2.2.0.orig/support/apxs.in 2005-06-10 11:18:14.000000000 +0200
|
===================================================================
|
||||||
+++ httpd-2.2.0/support/apxs.in 2005-12-07 11:04:38.337999601 +0100
|
--- httpd-2.2.16.orig/support/apxs.in
|
||||||
@@ -527,105 +527,14 @@
|
+++ httpd-2.2.16/support/apxs.in
|
||||||
|
@@ -526,108 +526,14 @@ if ($opt_i or $opt_e) {
|
||||||
|
|
||||||
# activate module via LoadModule/AddModule directive
|
# activate module via LoadModule/AddModule directive
|
||||||
if ($opt_a or $opt_A) {
|
if ($opt_a or $opt_A) {
|
||||||
@ -25,7 +26,10 @@ diff -uNr httpd-2.2.0.orig/support/apxs.in httpd-2.2.0/support/apxs.in
|
|||||||
$c = '#' if ($opt_A);
|
$c = '#' if ($opt_A);
|
||||||
foreach $lmd (@lmd) {
|
foreach $lmd (@lmd) {
|
||||||
- my $what = $opt_A ? "preparing" : "activating";
|
- my $what = $opt_A ? "preparing" : "activating";
|
||||||
- if ($content !~ m|\n#?\s*$lmd|) {
|
- my $lmd_re = $lmd;
|
||||||
|
- $lmd_re =~ s/\s+/\\s+/g;
|
||||||
|
-
|
||||||
|
- if ($content !~ m|\n#?\s*$lmd_re|) {
|
||||||
- # check for open <containers>, so that the new LoadModule
|
- # check for open <containers>, so that the new LoadModule
|
||||||
- # directive always appears *outside* of an <container>.
|
- # directive always appears *outside* of an <container>.
|
||||||
-
|
-
|
||||||
@ -88,7 +92,7 @@ diff -uNr httpd-2.2.0.orig/support/apxs.in httpd-2.2.0/support/apxs.in
|
|||||||
- }
|
- }
|
||||||
- } else {
|
- } else {
|
||||||
- # replace already existing LoadModule line
|
- # replace already existing LoadModule line
|
||||||
- $content =~ s|^(.*\n)#?\s*$lmd[^\n]*\n|$1$c$lmd\n|s;
|
- $content =~ s|^(.*\n)#?\s*$lmd_re[^\n]*\n|$1$c$lmd\n|s;
|
||||||
- }
|
- }
|
||||||
- $lmd =~ m|LoadModule\s+(.+?)_module.*|;
|
- $lmd =~ m|LoadModule\s+(.+?)_module.*|;
|
||||||
- notice("[$what module `$1' in $CFG_SYSCONFDIR/$CFG_TARGET.conf]");
|
- notice("[$what module `$1' in $CFG_SYSCONFDIR/$CFG_TARGET.conf]");
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:5ae0c428e7abd87eecbac8564d90a7182104325bae7086c21db7b3a1e3140ca7
|
|
||||||
size 4959582
|
|
3
httpd-2.2.16.tar.bz2
Normal file
3
httpd-2.2.16.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:9457d57a6bea15ce5bde83c88803c030953b99bdd0fbae65854adff527ed4c52
|
||||||
|
size 4775545
|
Loading…
x
Reference in New Issue
Block a user