From: Jeff Trawick Date: Sat, 22 Feb 2003 14:32:39 +0000 (+0000) Subject: add a hint about handling of IPv4-mapped IPv6 addresses X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=48bb29391873175cdd98bda7e8ff4d2c3a79fc12;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/server/main.c b/server/main.c index 5472160b63f..993d8e4553a 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