summaryrefslogtreecommitdiff
path: root/file_io
diff options
context:
space:
mode:
authordreid <dreid@13f79535-47bb-0310-9956-ffa450edef68>2002-01-12 18:08:37 +0000
committerdreid <dreid@13f79535-47bb-0310-9956-ffa450edef68>2002-01-12 18:08:37 +0000
commitc83c7956f72950070f8e7fd6b9501b016e71bd26 (patch)
tree0acf725b8adaf6b61e14a4e95642914d6e93044d /file_io
parent72d516ba42a064a4aea2c316c0cdf9efa2559774 (diff)
downloadlibapr-c83c7956f72950070f8e7fd6b9501b016e71bd26.tar.gz
Change the way we set the BEOS_BLOCKING define so that the picky
compiler allows it to build on classic BeOS. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62766 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io')
-rw-r--r--file_io/unix/pipe.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/file_io/unix/pipe.c b/file_io/unix/pipe.c
index db1182b8f..da3959e23 100644
--- a/file_io/unix/pipe.c
+++ b/file_io/unix/pipe.c
@@ -62,7 +62,9 @@
*/
#if BEOS
#if !BONE7
-# define BEOS_BLOCKING
+# define BEOS_BLOCKING 1
+#else
+# define BEOS_BLOCKING 0
#endif
#endif