1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03: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:
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

@@ -142,11 +142,11 @@ enum enctype {
#define HDR_APP (0) /* append header, for proxy_add_header() */
#define HDR_REP (1) /* replace header, for proxy_add_header() */
#ifdef AP_CHARSET_EBCDIC
#if APR_CHARSET_EBCDIC
#define CRLF "\r\n"
#else /*AP_CHARSET_EBCDIC*/
#else /*APR_CHARSET_EBCDIC*/
#define CRLF "\015\012"
#endif /*AP_CHARSET_EBCDIC*/
#endif /*APR_CHARSET_EBCDIC*/
#define DEFAULT_FTP_DATA_PORT 20
#define DEFAULT_FTP_PORT 21