647cfe7aba
- Update to version 2.4.6 * SECURITY: CVE-2013-1896 (cve.mitre.org) * SECURITY: CVE-2013-2249 (cve.mitre.org) * Major updates to mod_lua * Support for proxying websocket requests * Higher performant shm-based cache implementation * Addition of mod_macro for easier configuration management * As well as several exciting fixes, especially those related to RFC edge cases in mod_cache and mod_proxy. - IMPORTANT : With the current packaging scheme, we can no longer Include the ITK MPM, therefore it has been disabled. This is because this MPM can now only be provided as a loadable module but we do not currently build MPMs as shared modules but as independant binaries and all helpers/startup scripts depend on that behaviour. It will be fixed in the upcoming weeks/months. OBS-URL: https://build.opensuse.org/request/show/184014 OBS-URL: https://build.opensuse.org/package/show/Apache/apache2?expand=0&rev=382
35 lines
826 B
Diff
35 lines
826 B
Diff
--- httpd-2.4.6.orig/server/request.c
|
|
+++ httpd-2.4.6/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.6.orig/server/config.c
|
|
+++ httpd-2.4.6/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
|