You are viewing a plain text version of this content. The canonical link for it is here.
Posted to docs@httpd.apache.org by bu...@apache.org on 2012/09/03 22:18:58 UTC

[Bug 53824] New: manual/bind binding description for v4-mapped on FreeBSD platform is only valid for FreeBSD-5x

https://issues.apache.org/bugzilla/show_bug.cgi?id=53824

          Priority: P2
            Bug ID: 53824
          Assignee: docs@httpd.apache.org
           Summary: manual/bind binding description for v4-mapped on
                    FreeBSD platform is only valid for FreeBSD-5x
          Severity: normal
    Classification: Unclassified
                OS: FreeBSD
          Reporter: ohauer@gmx.de
          Hardware: All
            Status: NEW
           Version: 2.2.22
         Component: Documentation
           Product: Apache httpd-2

In the bind manual the following sentence is wrong (only valid for FreeBSD5)

--enable-v4-mapped is the default on all platforms except FreeBSD, NetBSD, and
OpenBSD, ...

If your platform supports it and you want Apache to handle IPv4 and IPv6 ...
--disable-v4-mapped is the default on FreeBSD, NetBSD, and OpenBSD.

This is text is only valid for FreeBSD-5.x.

>From the configure script:

# Check whether --enable-v4-mapped was given.
if test "${enable_v4_mapped+set}" = set; then :
  enableval=$enable_v4_mapped;
  v4mapped=$enableval
else
    case $host in
    *freebsd5*|*netbsd*|*openbsd*)
        v4mapped=no
        ;;
    *mingw*)
                        v4mapped=no
        ;;
    *)
        v4mapped=yes
        ;;
esac
fi

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-unsubscribe@httpd.apache.org
For additional commands, e-mail: docs-help@httpd.apache.org


[Bug 53824] manual/bind binding description for v4-mapped on FreeBSD platform is only valid for FreeBSD-5x

Posted by bu...@apache.org.
https://issues.apache.org/bugzilla/show_bug.cgi?id=53824

ohauer <oh...@gmx.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|Documentation               |Build
           Assignee|docs@httpd.apache.org       |bugs@httpd.apache.org

--- Comment #1 from ohauer <oh...@gmx.de> ---
I suspect this is more a config then a documentation issue so change to config.

Fix will be trivial s/freebsd5/freebsd/ config config.in
This fix is also valid fir httpd-2.4.x

-- 
You are receiving this mail because:
You are the assignee for the bug.

---------------------------------------------------------------------
To unsubscribe, e-mail: docs-unsubscribe@httpd.apache.org
For additional commands, e-mail: docs-help@httpd.apache.org