summaryrefslogtreecommitdiff
path: root/src/jthread/jevent.h
diff options
context:
space:
mode:
authorMarkus Koschany <apo@gambaru.de>2015-01-20 10:41:51 +0100
committerCraig Robbins <kde.psych@gmail.com>2015-02-11 15:59:58 +1000
commitcfca5f99e62a32b5488d93f771453ef6935c5d4e (patch)
tree44f3e00e3f23f48648e066b70a8cdd41cdd8a08f /src/jthread/jevent.h
parentcaf8d2a9d16a313bbc86a27ad0642efc76852e9f (diff)
downloadminetest-cfca5f99e62a32b5488d93f771453ef6935c5d4e.tar.gz
minetest-cfca5f99e62a32b5488d93f771453ef6935c5d4e.tar.bz2
minetest-cfca5f99e62a32b5488d93f771453ef6935c5d4e.zip
Fix FTBFS on GNU/Hurd platform
Minetest fails to build on GNU/Hurd due to a name clash with OSX/Apple, both are defining the __MACH__ keyword. This commit fixes the issue.
Diffstat (limited to 'src/jthread/jevent.h')
-rw-r--r--src/jthread/jevent.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jthread/jevent.h b/src/jthread/jevent.h
index f97e09ca0..9ea7ebde8 100644
--- a/src/jthread/jevent.h
+++ b/src/jthread/jevent.h
@@ -30,7 +30,7 @@
#ifdef _WIN32
#include <windows.h>
-#elif __MACH__
+#elif defined(__MACH__) && defined(__APPLE__)
#include <mach/mach.h>
#include <mach/task.h>
#include <mach/semaphore.h>
@@ -43,7 +43,7 @@
class Event {
#ifdef _WIN32
HANDLE hEvent;
-#elif __MACH__
+#elif defined(__MACH__) && defined(__APPLE__)
semaphore_t sem;
#else
sem_t sem;