1
0
mirror of https://github.com/apache/httpd.git synced 2025-11-08 04:22:21 +03:00

Namespace protect the rest of the macros defined by ap_config.h

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86661 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ryan Bloom
2000-10-19 00:05:00 +00:00
parent 7493daab32
commit 140586d14f
10 changed files with 27 additions and 30 deletions

View File

@@ -180,21 +180,21 @@
#undef VERSION
#if APR_HAS_MMAP
#define USE_MMAP_FILES 1
#define AP_USE_MMAP_FILES 1
#else
#undef USE_MMAP_FILES
#undef AP_USE_MMAP_FILES
#endif
#if APR_FILE_BASED_SHM
#define USE_FILE_BASED_SCOREBOARD
#define AP_USE_FILE_BASED_SCOREBOARD
#else
#define USE_MEM_BASED_SCOREBOARD
#define AP_USE_MEM_BASED_SCOREBOARD
#endif
/* If APR has OTHER_CHILD logic, use reliable piped logs.
*/
#if (APR_HAS_OTHER_CHILD)
#define HAVE_RELIABLE_PIPED_LOGS TRUE
#define AP_HAVE_RELIABLE_PIPED_LOGS TRUE
#endif
#if defined(CHARSET_EBCDIC) && !defined(APACHE_XLATE)