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

Fix for CONC-387:

Fix case sensitive include file names for cross compiling
This commit is contained in:
Georg Richter
2019-02-05 14:00:49 +01:00
parent 438b7f452a
commit 821185c20c
3 changed files with 4 additions and 4 deletions

View File

@@ -27,7 +27,7 @@
#ifdef _WIN32
#include <io.h>
#include "Shlwapi.h"
#include "shlwapi.h"
static const char *ini_exts[]= {"ini", "cnf", 0};
#define R_OK 4

View File

@@ -29,7 +29,7 @@ POSSIBILITY OF SUCH DAMAGE.
#define SECURITY_WIN32
#include <windows.h>
#include <sspi.h>
#include <SecExt.h>
#include <secext.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>

View File

@@ -29,10 +29,10 @@ POSSIBILITY OF SUCH DAMAGE.
#define SECURITY_WIN32
#include <windows.h>
#include <sspi.h>
#include <SecExt.h>
#include <secext.h>
#include <stdarg.h>
#include <stdio.h>
#define SSPI_MAX_TOKEN_SIZE 50000
#define SEC_ERROR(err) (err < 0)
extern void sspi_errmsg(int err, char *buf, size_t size);
extern void sspi_errmsg(int err, char *buf, size_t size);