summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-12-19 13:04:04 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2013-12-19 13:04:04 -0500
commitb1231696caa7d08c80055ca59b18f4b634dc47cf (patch)
treefdd49cabffe23a27e4c88277bfe7f58161c3e2f5
parent94993816cc5da618d3bab4fa9eb145db575ba1b1 (diff)
Mingw64 has pthread_t available, and does not need a thread ID comparison function
-rw-r--r--libs/pbd/pbd/abstract_ui.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/pbd/pbd/abstract_ui.h b/libs/pbd/pbd/abstract_ui.h
index e3f1f36b4e..ad97f25781 100644
--- a/libs/pbd/pbd/abstract_ui.h
+++ b/libs/pbd/pbd/abstract_ui.h
@@ -57,7 +57,7 @@ class AbstractUI : public BaseUI
};
typedef typename RequestBuffer::rw_vector RequestBufferVector;
-#ifdef COMPILER_MINGW
+#if defined(__MINGW32__) && !defined (__MINGW64__)
struct pthread_cmp
{