Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 61806 invoked by uid 500); 5 Aug 2002 09:28:26 -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 61795 invoked from network); 5 Aug 2002 09:28:26 -0000 Date: 5 Aug 2002 09:28:24 -0000 Message-ID: <20020805092824.29017.qmail@icarus.apache.org> From: martin@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr configure.in X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N martin 2002/08/05 02:28:24 Modified: . configure.in Log: Fix buggy substitution Revision Changes Path 1.474 +2 -2 apr/configure.in Index: configure.in =================================================================== RCS file: /home/cvs/apr/configure.in,v retrieving revision 1.473 retrieving revision 1.474 diff -u -r1.473 -r1.474 --- configure.in 4 Aug 2002 01:52:25 -0000 1.473 +++ configure.in 5 Aug 2002 09:28:24 -0000 1.474 @@ -1142,7 +1142,7 @@ elif test "$ac_cv_sizeof_off_t" = "$ac_cv_sizeof_long"; then off_t_fmt='#define APR_OFF_T_FMT "ld"' elif test "$ac_cv_sizeof_off_t" = "$ac_cv_sizeof_long_long"; then - off_t_fmt='#define APR_OFF_T_FMT $int64_t_fmt' + off_t_fmt='#define APR_OFF_T_FMT APR_INT64_T_FMT' else off_t_fmt='#error Can not determine the proper size for off_t' fi @@ -1154,7 +1154,7 @@ elif test "$ac_cv_sizeof_pid_t" = "$ac_cv_sizeof_long"; then pid_t_fmt='#define APR_PID_T_FMT "ld"' elif test "$ac_cv_sizeof_pid_t" = "$ac_cv_sizeof_long_long"; then - pid_t_fmt='#define APR_PID_T_FMT $int64_t_fmt' + pid_t_fmt='#define APR_PID_T_FMT APR_INT64_T_FMT' else pid_t_fmt='#error Can not determine the proper size for pid_t' fi