- Add WITHOUT_IPV6 knob to workaround problem with IP resolution

when --enable-v4-mapped is used (default).
  Use WITHOUT_IPV6 knob if you have problem with "HostnameLookup On" on
  IPv4-only server(s).
  I hope I can provide a real fix soon.
This commit is contained in:
Clement Laforet 2004-07-09 16:41:38 +00:00
parent 11af7f8686
commit fcd42c3e27
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=113285
2 changed files with 6 additions and 2 deletions

View file

@ -75,7 +75,9 @@ WITH_MPM?= prefork # or worker, perchild, threadpool
WITH_HTTP_PORT?= 80
.if !defined(WITH_IPV6_V6ONLY)
.if defined(WITHOUT_IPV6)
CONFIGURE_ARGS+= --disable-ipv6
.elif !defined(WITH_IPV6_V6ONLY)
CONFIGURE_ARGS+= --enable-v4-mapped
.endif

View file

@ -75,7 +75,9 @@ WITH_MPM?= prefork # or worker, perchild, threadpool
WITH_HTTP_PORT?= 80
.if !defined(WITH_IPV6_V6ONLY)
.if defined(WITHOUT_IPV6)
CONFIGURE_ARGS+= --disable-ipv6
.elif !defined(WITH_IPV6_V6ONLY)
CONFIGURE_ARGS+= --enable-v4-mapped
.endif