summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPale Moon <git-repo@palemoon.org>2018-04-30 13:43:22 +0200
committerPale Moon <git-repo@palemoon.org>2018-04-30 13:43:22 +0200
commit88836823bb3a7228e70fdc6f46ca62c142cf4651 (patch)
treefa83dab16e3909fc833dc1f490ae77eabc601515
parent38790d155b5d2cd7763c2e8675a5e0a0cee6203a (diff)
downloadpalemoon-gre-88836823bb3a7228e70fdc6f46ca62c142cf4651.tar.gz
Adjust cairo mutex locks for Tycho targets.
-rw-r--r--gfx/cairo/cairo/src/cairo-mutex-impl-private.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gfx/cairo/cairo/src/cairo-mutex-impl-private.h b/gfx/cairo/cairo/src/cairo-mutex-impl-private.h
index 6c67f6ebb..db512c46c 100644
--- a/gfx/cairo/cairo/src/cairo-mutex-impl-private.h
+++ b/gfx/cairo/cairo/src/cairo-mutex-impl-private.h
@@ -179,12 +179,12 @@
#elif defined(_WIN32) /******************************************************/
#define WIN32_LEAN_AND_MEAN
-/* We require Windows 7 features */
-#if !defined(WINVER) || (WINVER < 0x0601)
-# define WINVER 0x0601
+/* We require Windows Vista features */
+#if !defined(WINVER) || (WINVER < 0x0600)
+# define WINVER 0x0600
#endif
-#if !defined(_WIN32_WINNT) || (_WIN32_WINNT < 0x0601)
-# define _WIN32_WINNT 0x0601
+#if !defined(_WIN32_WINNT) || (_WIN32_WINNT < 0x0600)
+# define _WIN32_WINNT 0x0600
#endif
# include <windows.h>