mirror of
https://github.com/MariaDB/server.git
synced 2026-05-15 19:37:16 +02:00
os0file.c:
Add includes for the _stat() call to compile on Windows in Hot Backup build innobase/os/os0file.c: Add includes for the _stat() call to compile on Windows in Hot Backup build
This commit is contained in:
parent
563ebb4328
commit
1c49d54894
1 changed files with 7 additions and 0 deletions
|
|
@ -15,6 +15,13 @@ Created 10/21/1995 Heikki Tuuri
|
|||
#include "fil0fil.h"
|
||||
#include "buf0buf.h"
|
||||
|
||||
#if defined(UNIV_HOTBACKUP) && defined(__WIN__)
|
||||
/* Add includes for the _stat() call to compile on Windows */
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#include <errno.h>
|
||||
#endif /* UNIV_HOTBACKUP */
|
||||
|
||||
#undef HAVE_FDATASYNC
|
||||
|
||||
#ifdef POSIX_ASYNC_IO
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue