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
This commit is contained in:
Jeff Trawick
2000-12-20 16:44:01 +00:00
parent efe5ac62bd
commit 351725e726
19 changed files with 53 additions and 77 deletions

View File

@ -156,8 +156,8 @@ static void show_compile_settings(void)
printf(" -D PIPE_BUF=%ld\n",(long)PIPE_BUF);
#endif
#endif
#ifdef AP_CHARSET_EBCDIC
printf(" -D AP_CHARSET_EBCDIC\n");
#if APR_CHARSET_EBCDIC
printf(" -D APR_CHARSET_EBCDIC\n");
#endif
#ifdef APACHE_XLATE
printf(" -D APACHE_XLATE\n");
@ -308,7 +308,7 @@ int main(int argc, const char * const argv[])
pconf = process->pconf;
ap_server_argv0 = process->short_name;
#ifdef AP_CHARSET_EBCDIC
#if APR_CHARSET_EBCDIC
if (ap_init_ebcdic(pglobal) != APR_SUCCESS) {
destroy_and_exit_process(process, 1);
}