From c46bd9a252d8363c0c88e84f29d2095795481c35 Mon Sep 17 00:00:00 2001 From: reimar Date: Sun, 19 Dec 2010 22:02:52 +0000 Subject: build: cygwin: don't rely on _WIN32 being defined configure: Compilation fixes for current Cygwin git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32724 b3059339-0415-0410-9bf9-f77b7e298cf2 Do not #define _WIN32 on the command line for Cygwin. Newer Cygwin versions no longer do this and hopefully we should be able to survive without this hack as well. This change necessitates adapting two #ifdefs in the MPlayer codebase. It is committed untested as I do not have access to a Cygwin system. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32763 b3059339-0415-0410-9bf9-f77b7e298cf2 --- osdep/priority.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'osdep') diff --git a/osdep/priority.c b/osdep/priority.c index c7c5a1f797..0803a3299e 100644 --- a/osdep/priority.c +++ b/osdep/priority.c @@ -22,7 +22,7 @@ #include "osdep.h" -#ifdef _WIN32 +#if defined(__MINGW32__) || defined(__CYGWIN__) #include #endif -- cgit v1.2.3