From: Jeff Trawick Date: Sat, 10 Jun 2000 11:46:37 +0000 (+0000) Subject: httpd -V now displays APR's selection of the lock mechanism instead of the X-Git-Tag: APACHE_2_0_ALPHA_5~389 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cd6953bbf5c76e5b61a32c1bb5e20845ac8bbc99;p=thirdparty%2Fapache%2Fhttpd.git httpd -V now displays APR's selection of the lock mechanism instead of the symbols previously respected by prefork. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85499 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/main.c b/server/main.c index ea490224176..07968ffea6c 100644 --- a/server/main.c +++ b/server/main.c @@ -117,20 +117,20 @@ static void show_compile_settings(void) #ifdef NO_LINGCLOSE printf(" -D NO_LINGCLOSE\n"); #endif -#ifdef USE_FCNTL_SERIALIZED_ACCEPT - printf(" -D USE_FCNTL_SERIALIZED_ACCEPT\n"); +#if APR_USE_FLOCK_SERIALIZE + printf(" -D APR_USE_FLOCK_SERIALIZE\n"); #endif -#ifdef USE_FLOCK_SERIALIZED_ACCEPT - printf(" -D USE_FLOCK_SERIALIZED_ACCEPT\n"); +#if APR_USE_SYSVSEM_SERIALIZE + printf(" -D APR_USE_SYSVSEM_SERIALIZE\n"); #endif -#ifdef USE_USLOCK_SERIALIZED_ACCEPT - printf(" -D USE_USLOCK_SERIALIZED_ACCEPT\n"); +#if APR_USE_FCNTL_SERIALIZE + printf(" -D APR_USE_FCNTL_SERIALIZE\n"); #endif -#ifdef USE_SYSVSEM_SERIALIZED_ACCEPT - printf(" -D USE_SYSVSEM_SERIALIZED_ACCEPT\n"); +#if APR_USE_PROC_PTHREAD_SERIALIZE + printf(" -D APR_USE_PROC_PTHREAD_SERIALIZE\n"); #endif -#ifdef USE_PTHREAD_SERIALIZED_ACCEPT - printf(" -D USE_PTHREAD_SERIALIZED_ACCEPT\n"); +#if APR_USE_PTHREAD_SERIALIZE + printf(" -D APR_USE_PTHREAD_SERIALIZE\n"); #endif #ifdef SINGLE_LISTEN_UNSERIALIZED_ACCEPT printf(" -D SINGLE_LISTEN_UNSERIALIZED_ACCEPT\n");