diff options
author | Christian Beier <dontmind@freeshell.org> | 2018-03-24 21:20:24 +0100 |
---|---|---|
committer | Christian Beier <dontmind@freeshell.org> | 2018-03-24 21:20:24 +0100 |
commit | 7e7103071b5e927d830c22785a5b8314cacf065c (patch) | |
tree | 08eec02c88ba8568aa0bf892bbf63e0edfde4093 /deps/sasl-fix-snprintf-macro.patch | |
parent | f23248a415ab1abab7c4e5330a9985d5bb10987b (diff) | |
download | libtdevnc-7e7103071b5e927d830c22785a5b8314cacf065c.tar.gz libtdevnc-7e7103071b5e927d830c22785a5b8314cacf065c.zip |
AppVeyorCI: build with Visual Studio 2017 as well
Diffstat (limited to 'deps/sasl-fix-snprintf-macro.patch')
-rw-r--r-- | deps/sasl-fix-snprintf-macro.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/deps/sasl-fix-snprintf-macro.patch b/deps/sasl-fix-snprintf-macro.patch new file mode 100644 index 0000000..26b5da4 --- /dev/null +++ b/deps/sasl-fix-snprintf-macro.patch @@ -0,0 +1,26 @@ +From 310579a87a289588cf8c45587354a90973978510 Mon Sep 17 00:00:00 2001 +From: "Montazeri, Mehrdad" <mmontaze@amazon.com> +Date: Wed, 31 Jan 2018 09:25:08 -0800 +Subject: [PATCH 2/2] fix snprintf macro + +--- + win32/include/config.h | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/win32/include/config.h b/win32/include/config.h +index 8d8548e..304a4a9 100644 +--- a/win32/include/config.h ++++ b/win32/include/config.h +@@ -117,7 +117,9 @@ typedef int intptr_t; + /* Windows calls these functions something else + */ + #define strcasecmp stricmp ++#if defined (_MSC_VER) && (_MSC_VER < 1900) + #define snprintf _snprintf ++#endif + #define strncasecmp strnicmp + + #define MAXHOSTNAMELEN 1024 +-- +2.11.0.windows.3 + |