summaryrefslogtreecommitdiffstats
path: root/httpd-2.4.1-apr14.patch
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2012-05-01 14:49:38 +0200
committerRemi Collet <fedora@famillecollet.com>2012-05-01 14:49:38 +0200
commit811ddf657e592063f973cfd06a58cf0bd4eba73e (patch)
treebffb10f5a40c88f105ade1a1763d143f7dbe7514 /httpd-2.4.1-apr14.patch
parentd5bbe8b882e6a0c7d1154cf784fda0e479b865f8 (diff)
httpd: sync with rawhide
Diffstat (limited to 'httpd-2.4.1-apr14.patch')
-rw-r--r--httpd-2.4.1-apr14.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/httpd-2.4.1-apr14.patch b/httpd-2.4.1-apr14.patch
deleted file mode 100644
index 4f685f3..0000000
--- a/httpd-2.4.1-apr14.patch
+++ /dev/null
@@ -1,22 +0,0 @@
---- httpd-2.4.1/support/rotatelogs.c.apr14
-+++ httpd-2.4.1/support/rotatelogs.c
-@@ -52,6 +52,7 @@
- #if APR_FILES_AS_SOCKETS
- #include "apr_poll.h"
- #endif
-+#include "apr_version.h"
-
- #if APR_HAVE_STDLIB_H
- #include <stdlib.h>
-@@ -295,7 +296,11 @@ static void post_rotate(apr_pool_t *pool
- if (config->verbose) {
- fprintf(stderr,"Linking %s to %s\n", newlog->name, config->linkfile);
- }
-+#if APR_VERSION_AT_LEAST(1,4,0)
- rv = apr_file_link(newlog->name, config->linkfile);
-+#else
-+ rv = APR_ENOTIMPL;
-+#endif
- if (rv != APR_SUCCESS) {
- char error[120];
- apr_strerror(rv, error, sizeof error);