Commit 9a8efe10 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Fix compilation for windows using mingw.

parent fce8cec0
...@@ -44,9 +44,6 @@ ...@@ -44,9 +44,6 @@
#ifdef HAVE_SYS_STAT_H #ifdef HAVE_SYS_STAT_H
# include <sys/stat.h> # include <sys/stat.h>
#endif #endif
#ifdef HAVE_FCNTL_H
# include <fcntl.h>
#endif
#if defined( WIN32 ) && !defined( UNDER_CE ) #if defined( WIN32 ) && !defined( UNDER_CE )
# include <io.h> # include <io.h>
...@@ -56,6 +53,10 @@ ...@@ -56,6 +53,10 @@
# include <poll.h> # include <poll.h>
#endif #endif
#ifdef HAVE_FCNTL_H
# include <fcntl.h>
#endif
#if defined( WIN32 ) && !defined( UNDER_CE ) #if defined( WIN32 ) && !defined( UNDER_CE )
# ifdef lseek # ifdef lseek
# undef lseek # undef lseek
...@@ -381,7 +382,7 @@ static int open_file (access_t *p_access, const char *path) ...@@ -381,7 +382,7 @@ static int open_file (access_t *p_access, const char *path)
return -1; return -1;
} }
# if defined(HAVE_FCNTL_H) # if defined(HAVE_FCNTL_H) && !defined( WIN32 )
fcntl (fd, F_SETFD, fcntl (fd, F_GETFD) | FD_CLOEXEC); fcntl (fd, F_SETFD, fcntl (fd, F_GETFD) | FD_CLOEXEC);
/* We'd rather use any available memory for reading ahead /* We'd rather use any available memory for reading ahead
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment