]> granicus.if.org Git - apache/commitdiff
Merge r1551685 from trunk:
authorJim Jagielski <jim@apache.org>
Thu, 20 Feb 2014 19:36:12 +0000 (19:36 +0000)
committerJim Jagielski <jim@apache.org>
Thu, 20 Feb 2014 19:36:12 +0000 (19:36 +0000)
FreeBSD: Disable IPv4-mapped listening sockets by default for versions
5+ instead of just for FreeBSD 5.

PR: 53824

Submitted by: trawick
Reviewed/backported by: jim

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1570322 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
configure.in

diff --git a/CHANGES b/CHANGES
index 0becd5e696f513bb2f2509f69f6486393209e9cc..b0109dcc2e9933410389d552cfea44afb5c7e3c8 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,9 @@
 
 Changes with Apache 2.4.8
 
+  *) FreeBSD: Disable IPv4-mapped listening sockets by default for versions
+     5+ instead of just for FreeBSD 5. PR 53824. [Jeff Trawick]
+
   *) mod_proxy_wstunnel: Avoid busy loop on client errors, drop message
      IDs 02445, 02446, and 02448 to TRACE1 from DEBUG. PR 56145.
      [Joffroy Christen <joffroy.christen solvaxis com>, Eric Covener]
index 8120156841f20c3af8a4c834e370ee18850fbe88..864d7c7c0e80dd71a67d2727ed29bd3914bde52d 100644 (file)
@@ -774,7 +774,10 @@ AC_ARG_ENABLE(v4-mapped,APACHE_HELP_STRING(--enable-v4-mapped,Allow IPv6 sockets
 ],
 [
     case $host in
-    *freebsd5*|*netbsd*|*openbsd*)
+    *freebsd[1234].*)
+        v4mapped=yes
+        ;;
+    *freebsd*|*netbsd*|*openbsd*)
         v4mapped=no
         ;;
     *)