Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 99991 invoked by uid 500); 12 Apr 2001 13:05:39 -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 99976 invoked by uid 1103); 12 Apr 2001 13:05:38 -0000 Date: 12 Apr 2001 13:05:38 -0000 Message-ID: <20010412130538.99974.qmail@apache.org> From: dreid@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr configure.in dreid 01/04/12 06:05:38 Modified: . configure.in Log: If we don't have stdint.h then this stops the build from breaking as we don't then have anything in apr.h. Not sure the logic is what was intended, but as we only really need to include stdint.h for one macro, if we have the header but not the macro seems reasonable to drop the header. Revision Changes Path 1.290 +2 -0 apr/configure.in Index: configure.in =================================================================== RCS file: /home/cvs/apr/configure.in,v retrieving revision 1.289 retrieving revision 1.290 diff -u -r1.289 -r1.290 --- configure.in 2001/04/12 07:05:46 1.289 +++ configure.in 2001/04/12 13:05:38 1.290 @@ -651,6 +651,8 @@ if test "$ac_cv_define_INT64_C" = "yes"; then int64_literal='#define APR_INT64_C(val) INT64_C(val)' stdint=1 +else + stdint=0 fi if test "$ac_cv_type_off_t" = "yes"; then