Commit 4917f7f3 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Revert "Fix compilation for windows using mingw." it was not meant for committing either.

This reverts commit 9a8efe10.
parent 53af46b7
...@@ -44,6 +44,9 @@ ...@@ -44,6 +44,9 @@
#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>
...@@ -53,10 +56,6 @@ ...@@ -53,10 +56,6 @@
# 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
...@@ -382,7 +381,7 @@ static int open_file (access_t *p_access, const char *path) ...@@ -382,7 +381,7 @@ static int open_file (access_t *p_access, const char *path)
return -1; return -1;
} }
# if defined(HAVE_FCNTL_H) && !defined( WIN32 ) # if defined(HAVE_FCNTL_H)
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