summaryrefslogtreecommitdiffstats
path: root/ProcessUNIX.c
diff options
context:
space:
mode:
authorKWSys Robot <kwrobot@kitware.com>2013-01-31 13:21:49 (GMT)
committerBrad King <brad.king@kitware.com>2013-02-01 14:27:46 (GMT)
commit23ae48412093e4acbd5270536aace226d5869679 (patch)
tree9824f19802c2b88a6b1124ac0c20ba0eb4516fa1 /ProcessUNIX.c
parent4ba0ac7be4bbe38a7cb3334504e69db039288ad8 (diff)
downloadCMake-23ae48412093e4acbd5270536aace226d5869679.zip
CMake-23ae48412093e4acbd5270536aace226d5869679.tar.gz
CMake-23ae48412093e4acbd5270536aace226d5869679.tar.bz2
KWSys 2013-01-31 (5b0d1bd9)
Extract upstream KWSys using the following shell commands. $ git archive --prefix=upstream-kwsys/ 5b0d1bd9 | tar x $ git shortlog --no-merges --abbrev=8 --format='%h %s' 6fa1c99f..5b0d1bd9 Alan Hourihane (2): e81e2b72 DynamicLoader: Implement on Atari FreeMINT 5c4dcb2b ProcessUNIX: No select on Atari FreeMINT Sean McBride (2): bff2ea07 Glob: Fix clang -Wdocumentation warning 5b0d1bd9 Fix clang -Weverything warnings Change-Id: I8b342bea8bc9c7b92a856ddc948e1b56f5e74b98
Diffstat (limited to 'ProcessUNIX.c')
-rw-r--r--ProcessUNIX.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ProcessUNIX.c b/ProcessUNIX.c
index 2db1254..fc9e8bf 100644
--- a/ProcessUNIX.c
+++ b/ProcessUNIX.c
@@ -102,7 +102,7 @@ static inline void kwsysProcess_usleep(unsigned int msec)
* pipes' file handles to be non-blocking and just poll them directly
* without select().
*/
-#if !defined(__BEOS__) && !defined(__VMS)
+#if !defined(__BEOS__) && !defined(__VMS) && !defined(__MINT__)
# define KWSYSPE_USE_SELECT 1
#endif