summaryrefslogtreecommitdiffstats
path: root/os/bs2000
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2000-12-20 17:44:01 +0100
committerJeff Trawick <trawick@apache.org>2000-12-20 17:44:01 +0100
commit351725e7266964eea4a0de39b6492fe5dfddf12d (patch)
treed47b145d0c624f40f21e2d78885823ff3ca1acd9 /os/bs2000
parentAdd a note about the directives to add input and output filters. (diff)
downloadapache2-351725e7266964eea4a0de39b6492fe5dfddf12d.tar.xz
apache2-351725e7266964eea4a0de39b6492fe5dfddf12d.zip
Switch to the APR-provided APR_CHARSET_EBCDIC feature test macro.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87460 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/bs2000')
-rw-r--r--os/bs2000/ebcdic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/bs2000/ebcdic.c b/os/bs2000/ebcdic.c
index 879b35050d..1e118bd114 100644
--- a/os/bs2000/ebcdic.c
+++ b/os/bs2000/ebcdic.c
@@ -56,8 +56,8 @@
* University of Illinois, Urbana-Champaign.
*/
-#ifdef AP_CHARSET_EBCDIC
#include "ap_config.h"
+#if APR_CHARSET_EBCDIC
#include "ebcdic.h"
/*
Initial Port for Apache-1.3 by <Martin.Kraemer@Mch.SNI.De>
@@ -249,4 +249,4 @@ ascii2ebcdic(unsigned char *dest, const unsigned char *srce, size_t count)
*dest++ = os_toebcdic[*srce++];
}
}
-#endif /*AP_CHARSET_EBCDIC*/
+#endif /*APR_CHARSET_EBCDIC*/