Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 69987 invoked by uid 500); 12 Jan 2002 18:08:38 -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 69976 invoked from network); 12 Jan 2002 18:08:38 -0000 Date: 12 Jan 2002 18:08:37 -0000 Message-ID: <20020112180837.35528.qmail@icarus.apache.org> From: dreid@apache.org To: apr-cvs@apache.org Subject: cvs commit: apr/file_io/unix pipe.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N dreid 02/01/12 10:08:37 Modified: file_io/unix pipe.c Log: Change the way we set the BEOS_BLOCKING define so that the picky compiler allows it to build on classic BeOS. Revision Changes Path 1.50 +3 -1 apr/file_io/unix/pipe.c Index: pipe.c =================================================================== RCS file: /home/cvs/apr/file_io/unix/pipe.c,v retrieving revision 1.49 retrieving revision 1.50 diff -u -r1.49 -r1.50 --- pipe.c 11 Dec 2001 17:08:16 -0000 1.49 +++ pipe.c 12 Jan 2002 18:08:37 -0000 1.50 @@ -62,7 +62,9 @@ */ #if BEOS #if !BONE7 -# define BEOS_BLOCKING +# define BEOS_BLOCKING 1 +#else +# define BEOS_BLOCKING 0 #endif #endif