comparison osdep/priority.c @ 32676:db882cd69776

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.
author diego
date Thu, 06 Jan 2011 12:42:59 +0000
parents 24c1cedb1de2
children 3d7ee643b110
comparison
equal deleted inserted replaced
32675:c70109fc98b2 32676:db882cd69776
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */ 21 */
22 22
23 #include "osdep.h" 23 #include "osdep.h"
24 24
25 #ifdef _WIN32 25 #if defined(__MINGW32__) || defined(__CYGWIN__)
26 #include <windows.h> 26 #include <windows.h>
27 #endif 27 #endif
28 28
29 #include <string.h> 29 #include <string.h>
30 30