mirror of
https://github.com/apache/httpd.git
synced 2025-08-13 14:40:20 +00:00
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:
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user