aboutsummaryrefslogtreecommitdiff
path: root/ports/librtmp/fix_strncasecmp.patch
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2017-10-05 15:12:13 -0700
committerGitHub <noreply@github.com>2017-10-05 15:12:13 -0700
commit1946a8ca9425068b7fd4b465c871bd1a50e5f2f5 (patch)
tree071878b778907ab4e1f3508b715e5e30755472f1 /ports/librtmp/fix_strncasecmp.patch
parenta518ded266259141edd278e3f4025a3ab3211215 (diff)
parent887466dfc1ff8ed20d3b9268f76da987f7d53635 (diff)
downloadvcpkg-1946a8ca9425068b7fd4b465c871bd1a50e5f2f5.tar.gz
vcpkg-1946a8ca9425068b7fd4b465c871bd1a50e5f2f5.zip
Merge pull request #1928 from lazyhamster/librtmp
New port for librtmp 2.3
Diffstat (limited to 'ports/librtmp/fix_strncasecmp.patch')
-rw-r--r--ports/librtmp/fix_strncasecmp.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/ports/librtmp/fix_strncasecmp.patch b/ports/librtmp/fix_strncasecmp.patch
new file mode 100644
index 000000000..c1cadc4ac
--- /dev/null
+++ b/ports/librtmp/fix_strncasecmp.patch
@@ -0,0 +1,16 @@
+diff --git a/librtmp/rtmp_sys.h b/librtmp/rtmp_sys.h
+index 0874cbe..b43d587 100644
+--- a/librtmp/rtmp_sys.h
++++ b/librtmp/rtmp_sys.h
+@@ -37,6 +37,11 @@
+ #include <ws2tcpip.h>
+ #endif
+
++#ifdef _MSC_VER
++#define strncasecmp _strnicmp
++#define strcasecmp _stricmp
++#endif
++
+ #define GetSockError() WSAGetLastError()
+ #define SetSockError(e) WSASetLastError(e)
+ #define setsockopt(a,b,c,d,e) (setsockopt)(a,b,c,(const char *)d,(int)e)