Last active
December 15, 2015 08:59
-
-
Save n0ts/5235413 to your computer and use it in GitHub Desktop.
Apache HTTPd configure.in patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- configure.in.orig 2013-05-17 00:55:44.763419166 +0900 | |
+++ configure.in 2013-05-17 00:56:13.162731989 +0900 | |
@@ -278,6 +278,9 @@ | |
2.[[2-9]]* ) | |
APR_SETVAR(SINGLE_LISTEN_UNSERIALIZED_ACCEPT, [1]) | |
;; | |
+ 3.[[0-9]]* ) | |
+ APR_SETVAR(SINGLE_LISTEN_UNSERIALIZED_ACCEPT, [1]) | |
+ ;; | |
* ) | |
;; | |
esac | |
--- configure.orig 2013-05-17 00:53:00.419399215 +0900 | |
+++ configure 2013-05-17 00:55:34.923657144 +0900 | |
@@ -5800,6 +5800,12 @@ | |
SINGLE_LISTEN_UNSERIALIZED_ACCEPT="1" | |
;; | |
+ 3.[0-9]* ) | |
+ | |
+ test "x$silent" != "xyes" && echo " forcing SINGLE_LISTEN_UNSERIALIZED_ACCEPT to \"1\"" | |
+ SINGLE_LISTEN_UNSERIALIZED_ACCEPT="1" | |
+ | |
+ ;; | |
* ) | |
;; | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment