1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-07 02:42:49 +03:00

Fix include on case-sensitive fs

shlwapi is lowercase on case-sensitive file-systems
This commit is contained in:
xantares
2020-09-12 14:29:56 +02:00
committed by GitHub
parent 29a3396456
commit 9d7c233e8d

View File

@@ -74,7 +74,7 @@
#endif
#include <mysql/client_plugin.h>
#ifdef _WIN32
#include "Shlwapi.h"
#include "shlwapi.h"
#define strncasecmp _strnicmp
#endif