summaryrefslogtreecommitdiffstats
path: root/server/main.c
diff options
context:
space:
mode:
authorGreg Stein <gstein@apache.org>2001-02-24 04:40:50 +0100
committerGreg Stein <gstein@apache.org>2001-02-24 04:40:50 +0100
commit4f28702c9c7cadb505c4e47bca2dea86ca7d2698 (patch)
tree8671d13e509de1a5e4c5e743094460fea28560c8 /server/main.c
parenttoss ENUM_BITFIELD. used in one place (but didn't need to be used), and it (diff)
downloadapache2-4f28702c9c7cadb505c4e47bca2dea86ca7d2698.tar.xz
apache2-4f28702c9c7cadb505c4e47bca2dea86ca7d2698.zip
clean out some old crud from ap_config.h
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88296 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/main.c')
-rw-r--r--server/main.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/server/main.c b/server/main.c
index 8f4c2075cc..93e83fcbc6 100644
--- a/server/main.c
+++ b/server/main.c
@@ -102,15 +102,12 @@ static void show_compile_settings(void)
#ifdef HAVE_SHMGET
printf(" -D HAVE_SHMGET\n");
#endif
-#ifdef AP_USE_FILE_BASED_SCOREBOARD
- printf(" -D AP_USE_FILE_BASED_SCOREBOARD\n");
+#if APR_FILE_BASED_SHM
+ printf(" -D APR_FILE_BASED_SHM\n");
#endif
-#ifdef AP_USE_MEM_BASED_SCOREBOARD
- printf(" -D AP_USE_MEM_BASED_SCOREBOARD\n");
-#endif
-#ifdef APR_HAS_MMAP
+#if APR_HAS_MMAP
printf(" -D APR_HAS_MMAP\n");
-#endif /*APR_HAS_MMAP*/
+#endif
#ifdef NO_WRITEV
printf(" -D NO_WRITEV\n");
#endif