Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
9a8efe10
Commit
9a8efe10
authored
Oct 13, 2008
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compilation for windows using mingw.
parent
fce8cec0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
modules/access/file.c
modules/access/file.c
+5
-4
No files found.
modules/access/file.c
View file @
9a8efe10
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment