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
1da83920
Commit
1da83920
authored
Aug 03, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove useless <dirent.h> check
parent
744ff759
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
2 additions
and
40 deletions
+2
-40
configure.ac
configure.ac
+0
-3
modules/access/directory.c
modules/access/directory.c
+0
-3
modules/control/http/http.h
modules/control/http/http.h
+0
-4
modules/demux/mkv/mkv.hpp
modules/demux/mkv/mkv.hpp
+0
-4
modules/gui/skins2/src/theme_loader.cpp
modules/gui/skins2/src/theme_loader.cpp
+0
-5
modules/gui/skins2/src/theme_repository.cpp
modules/gui/skins2/src/theme_repository.cpp
+0
-3
modules/misc/gnutls.c
modules/misc/gnutls.c
+0
-3
src/extras/libc.c
src/extras/libc.c
+1
-4
src/input/subtitles.c
src/input/subtitles.c
+0
-4
src/modules/modules.c
src/modules/modules.c
+0
-4
src/text/filesystem.c
src/text/filesystem.c
+1
-3
No files found.
configure.ac
View file @
1da83920
...
...
@@ -827,9 +827,6 @@ then
fi
])
dnl Check for dirent
AC_CHECK_HEADERS(dirent.h)
dnl Mac OS X and other OSes don't have declaration for nanosleep
if test "${SYS}" != "mingw32" -a "${SYS}" != "mingwce"; then
AC_MSG_CHECKING(for nanosleep in time.h)
...
...
modules/access/directory.c
View file @
1da83920
...
...
@@ -46,9 +46,6 @@
# include <io.h>
#endif
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif
#ifdef __sun__
static
inline
int
dirfd
(
DIR
*
dir
)
{
...
...
modules/control/http/http.h
View file @
1da83920
...
...
@@ -49,10 +49,6 @@
# include <io.h>
#endif
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif
/* stat() support for large files on win32 */
#if defined( WIN32 ) && !defined( UNDER_CE )
# define stat _stati64
...
...
modules/demux/mkv/mkv.hpp
View file @
1da83920
...
...
@@ -62,10 +62,6 @@
#include <vector>
#include <algorithm>
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif
/* libebml and matroska */
#include "ebml/EbmlHead.h"
#include "ebml/EbmlSubHead.h"
...
...
modules/gui/skins2/src/theme_loader.cpp
View file @
1da83920
...
...
@@ -42,11 +42,6 @@
# include <direct.h>
#endif
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif
#if defined( HAVE_ZLIB_H )
# include <zlib.h>
# include <errno.h>
...
...
modules/gui/skins2/src/theme_repository.cpp
View file @
1da83920
...
...
@@ -30,9 +30,6 @@
#elif defined( WIN32 ) && !defined( UNDER_CE )
# include <direct.h>
#endif
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif
#include <fstream>
...
...
modules/misc/gnutls.c
View file @
1da83920
...
...
@@ -36,9 +36,6 @@
#include <sys/types.h>
#include <errno.h>
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
...
...
src/extras/libc.c
View file @
1da83920
...
...
@@ -32,6 +32,7 @@
#include <vlc_common.h>
#include <errno.h>
#include <dirent.h>
#undef iconv_t
#undef iconv_open
...
...
@@ -42,10 +43,6 @@
# include <iconv.h>
#endif
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif
#ifdef HAVE_FORK
# include <signal.h>
# include <unistd.h>
...
...
src/input/subtitles.c
View file @
1da83920
...
...
@@ -35,10 +35,6 @@
#include <vlc_fs.h>
#include <vlc_url.h>
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
...
...
src/modules/modules.c
View file @
1da83920
...
...
@@ -39,10 +39,6 @@
#include <string.h>
/* strdup() */
#include <assert.h>
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif
#include <sys/types.h>
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
...
...
src/text/filesystem.c
View file @
1da83920
...
...
@@ -43,9 +43,7 @@
#endif
#include <errno.h>
#include <sys/types.h>
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif
#include <dirent.h>
#ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
#endif
...
...
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