From 2bbb0252b6f1bcf464851d2dc47dc3de5bf9cb3d Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Sat, 22 Feb 2003 14:32:39 +0000 Subject: [PATCH] add a hint about handling of IPv4-mapped IPv6 addresses to the output of httpd -V git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98753 13f79535-47bb-0310-9956-ffa450edef68 --- server/main.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/server/main.c b/server/main.c index 5472160b63..993d8e4553 100644 --- a/server/main.c +++ b/server/main.c @@ -136,7 +136,12 @@ static void show_compile_settings(void) #endif #if APR_HAVE_IPV6 - printf(" -D APR_HAVE_IPV6\n"); + printf(" -D APR_HAVE_IPV6 (IPv4-mapped addresses "); +#ifdef AP_ENABLE_V4_MAPPED + printf("enabled)\n"); +#else + printf("disabled)\n"); +#endif #endif #if APR_USE_FLOCK_SERIALIZE -- 2.50.1