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