summaryrefslogtreecommitdiff
path: root/gettext-tools/gnulib-lib/pipe-filter-aux.h
diff options
context:
space:
mode:
Diffstat (limited to 'gettext-tools/gnulib-lib/pipe-filter-aux.h')
-rw-r--r--gettext-tools/gnulib-lib/pipe-filter-aux.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/gettext-tools/gnulib-lib/pipe-filter-aux.h b/gettext-tools/gnulib-lib/pipe-filter-aux.h
index 132cc54..50ad62c 100644
--- a/gettext-tools/gnulib-lib/pipe-filter-aux.h
+++ b/gettext-tools/gnulib-lib/pipe-filter-aux.h
@@ -1,5 +1,5 @@
/* Auxiliary code for filtering of data through a subprocess.
- Copyright (C) 2001-2003, 2008-2015 Free Software Foundation, Inc.
+ Copyright (C) 2001-2003, 2008-2016 Free Software Foundation, Inc.
Written by Bruno Haible <haible@clisp.cons.org>, 2009.
This program is free software: you can redistribute it and/or modify
@@ -35,8 +35,9 @@ _GL_INLINE_HEADER_BEGIN
looping while waiting for the child. Not good. But hardly any platform
lacks select() nowadays.) */
-/* On BeOS select() works only on sockets, not on normal file descriptors. */
-#ifdef __BEOS__
+/* On BeOS and OS/2 kLIBC select() works only on sockets, not on normal file
+ descriptors. */
+#if defined __BEOS__ || defined __KLIBC__
# undef HAVE_SELECT
#endif