From 5c4dcb2bfd9f2d619e9e186f1ffd27b6b1c4cb2b Mon Sep 17 00:00:00 2001 From: Alan Hourihane <alanh@fairlite.co.uk> Date: Fri, 25 Jan 2013 08:08:00 -0500 Subject: [PATCH] ProcessUNIX: No select on Atari FreeMINT Change-Id: I4e44d61c175e1deb4cecdebfdba5fa05cbdd1e6b --- ProcessUNIX.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- GitLab