Module: wine
Branch: master
Commit: 8101d25118db9c35fc84980c1b342a1f515316f9
URL: https://source.winehq.org/git/wine.git/?a=commit;h=8101d25118db9c35fc84980c…
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Sun Nov 17 13:43:14 2019 +0100
include: Windows SDK C headers have snprintf.
And it is a function prototype, so we can't use #ifndef.
Signed-off-by: Stefan Dösinger <stefan(a)codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
include/wine/port.h | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/include/wine/port.h b/include/wine/port.h
index b3ef4b905a..264f282837 100644
--- a/include/wine/port.h
+++ b/include/wine/port.h
@@ -69,7 +69,13 @@
#endif
#define popen _popen
#define pclose _pclose
-#define snprintf _snprintf
+/* The UCRT headers in the Windows SDK #error out if we #define snprintf.
+ * The C headers that came with previous Visual Studio versions do not have
+ * snprintf. Check for VS 2015, which appears to be the first version to
+ * use the UCRT headers by default. */
+#if _MSC_VER < 1900
+# define snprintf _snprintf
+#endif
#define strtoll _strtoi64
#define strtoull _strtoui64
#define strncasecmp _strnicmp
Module: website
Branch: master
Commit: 19e82fb9d5402e41d5409ee698b03630013fe80a
URL: https://source.winehq.org/git/website.git/?a=commit;h=19e82fb9d5402e41d5409…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Fri Nov 15 23:55:37 2019 +0100
Wine release 4.20
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
news/en/2019111501.xml | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/news/en/2019111501.xml b/news/en/2019111501.xml
new file mode 100644
index 00000000..4f78e8ef
--- /dev/null
+++ b/news/en/2019111501.xml
@@ -0,0 +1,16 @@
+<news>
+<date>November 15, 2019</date>
+<title>Wine 4.20 Released</title>
+<body>
+<p> The Wine development release 4.20 is now available.</p>
+<p> <a href="{$root}/announce/4.20">What's new</a> in this release:
+<ul>
+ <li>New version of the Mono engine with an FNA update.</li>
+ <li>Code persistence in VBScript and JScript.</li>
+ <li>Vulkan spec updates.</li>
+ <li>Improved support for LLVM MinGW.</li>
+ <li>Various bug fixes.</li>
+</ul>
+<p>The source is <a href="//dl.winehq.org/wine/source/4.x/wine-4.20.tar.xz">available now</a>.
+Binary packages are in the process of being built, and will appear soon at their respective <a href="{$root}/download">download locations</a>.
+</p></body></news>