From fb4cd9527091bf6998b6701edc85a9fdad4312df Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Sat, 16 Dec 2000 11:45:13 +0000 Subject: [PATCH] Display whether or not APR (and thus Apache) supports IPv6 in the httpd -V output. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87368 13f79535-47bb-0310-9956-ffa450edef68 --- server/main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/server/main.c b/server/main.c index 4e3497f643..7ec04e3f77 100644 --- a/server/main.c +++ b/server/main.c @@ -120,6 +120,9 @@ static void show_compile_settings(void) #ifdef NO_LINGCLOSE printf(" -D NO_LINGCLOSE\n"); #endif +#if APR_HAVE_IPV6 + printf(" -D APR_HAVE_IPV6\n"); +#endif #if APR_USE_FLOCK_SERIALIZE printf(" -D APR_USE_FLOCK_SERIALIZE\n"); #endif -- 2.50.1