From: Jeff Trawick Date: Sat, 16 Dec 2000 11:45:13 +0000 (+0000) Subject: Display whether or not APR (and thus Apache) supports IPv6 in the X-Git-Tag: APACHE_2_0_BETA_CANDIDATE_1~430 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb4cd9527091bf6998b6701edc85a9fdad4312df;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/server/main.c b/server/main.c index 4e3497f643f..7ec04e3f776 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