From e7241389ed7805e3d7a38a30723bfff4d5d046d7 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Thu, 18 May 2000 19:56:16 +0000 Subject: [PATCH] Add "-D APACHE_XLATE" to the output of httpd -V when APACHE_XLATE is defined at compile time. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85248 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 ed6a8b8f39..d62f001f26 100644 --- a/server/main.c +++ b/server/main.c @@ -152,6 +152,9 @@ static void show_compile_settings(void) #ifdef CHARSET_EBCDIC printf(" -D CHARSET_EBCDIC\n"); #endif +#ifdef APACHE_XLATE + printf(" -D APACHE_XLATE\n"); +#endif #ifdef NEED_HASHBANG_EMUL printf(" -D NEED_HASHBANG_EMUL\n"); #endif -- 2.50.1