Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 80093 invoked by uid 500); 8 Jan 2003 17:47:27 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 80082 invoked by uid 500); 8 Jan 2003 17:47:27 -0000 Delivered-To: apmail-apr-util-cvs@apache.org Date: 8 Jan 2003 17:47:26 -0000 Message-ID: <20030108174726.85319.qmail@icarus.apache.org> From: stoddard@apache.org To: apr-util-cvs@apache.org Subject: cvs commit: apr-util/xlate xlate.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N stoddard 2003/01/08 09:47:26 Modified: xlate xlate.c Log: There is no such beast as APU_HAS_APR_ICONV Revision Changes Path 1.14 +3 -3 apr-util/xlate/xlate.c Index: xlate.c =================================================================== RCS file: /home/cvs/apr-util/xlate/xlate.c,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- xlate.c 1 Jan 2003 00:02:22 -0000 1.13 +++ xlate.c 8 Jan 2003 17:47:26 -0000 1.14 @@ -81,7 +81,7 @@ #include #endif -#if defined(APU_ICONV_INBUF_CONST) || APU_HAS_APR_ICONV +#if defined(APU_ICONV_INBUF_CONST) || APU_HAVE_APR_ICONV #define ICONV_INBUF_TYPE const char ** #else #define ICONV_INBUF_TYPE char ** @@ -119,7 +119,7 @@ { apr_xlate_t *old = convset; -#if APU_HAS_APR_ICONV +#if APU_HAVE_APR_ICONV if (old->ich != (apr_iconv_t)-1) { return apr_iconv_close(old->ich); } @@ -222,7 +222,7 @@ make_identity_table(new); } -#if APU_HAS_APR_ICONV +#if APU_HAVE_APR_ICONV if (!found) { rv = apr_iconv_open(topage, frompage, pool, &new->ich); if (rv != APR_SUCCESS) {