forked from pool/apache2
- remove After=mysql.service php-fpm.service postgresql.service which were added in the previous change, those must be added as Before=apache2.service in the respective services. - Include mod_systemd for more complete integration with systemd, turn the service to Typé=notify as required - Disable SSL NPN patch for now, it is required for mod_spdy but mod_spdy does not support apache 2.4 - apache 2.4.4 * fix for CVE-2012-3499 * fix for the CRIME attack (disable ssl compression by default) * many other bugfies * build access_compat amd unixd as static modules and solve some other upgrade quirks (bnc#813705) OBS-URL: https://build.opensuse.org/request/show/179374 OBS-URL: https://build.opensuse.org/package/show/Apache/apache2?expand=0&rev=379
35 lines
826 B
Diff
35 lines
826 B
Diff
--- httpd-2.4.4.orig/server/request.c
|
|
+++ httpd-2.4.4/server/request.c
|
|
@@ -46,10 +46,13 @@
|
|
#include "util_script.h"
|
|
#include "ap_expr.h"
|
|
#include "mod_request.h"
|
|
-
|
|
+#include "http_connection.h"
|
|
#include "mod_core.h"
|
|
#include "mod_auth.h"
|
|
|
|
+#include <unistd.h>
|
|
+#include <sys/types.h>
|
|
+
|
|
#if APR_HAVE_STDARG_H
|
|
#include <stdarg.h>
|
|
#endif
|
|
--- httpd-2.4.4.orig/server/config.c
|
|
+++ httpd-2.4.4/server/config.c
|
|
@@ -48,10 +48,14 @@
|
|
#include "http_request.h" /* for default_handler (see invoke_handler) */
|
|
#include "http_main.h"
|
|
#include "http_vhost.h"
|
|
+#include "http_connection.h"
|
|
#include "util_cfgtree.h"
|
|
#include "util_varbuf.h"
|
|
#include "mpm_common.h"
|
|
|
|
+#include <unistd.h>
|
|
+#include <sys/types.h>
|
|
+
|
|
#define APLOG_UNSET (APLOG_NO_MODULE - 1)
|
|
/* we know core's module_index is 0 */
|
|
#undef APLOG_MODULE_INDEX
|