Browse Source

Remove useless <dirent.h> check

pull/2/head
Rémi Denis-Courmont 16 years ago
parent
commit
1da8392047
  1. 3
      configure.ac
  2. 3
      modules/access/directory.c
  3. 4
      modules/control/http/http.h
  4. 4
      modules/demux/mkv/mkv.hpp
  5. 5
      modules/gui/skins2/src/theme_loader.cpp
  6. 3
      modules/gui/skins2/src/theme_repository.cpp
  7. 3
      modules/misc/gnutls.c
  8. 5
      src/extras/libc.c
  9. 4
      src/input/subtitles.c
  10. 4
      src/modules/modules.c
  11. 4
      src/text/filesystem.c

3
configure.ac

@ -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)

3
modules/access/directory.c

@ -46,9 +46,6 @@
# include <io.h>
#endif
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif
#ifdef __sun__
static inline int dirfd (DIR *dir)
{

4
modules/control/http/http.h

@ -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

4
modules/demux/mkv/mkv.hpp

@ -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"

5
modules/gui/skins2/src/theme_loader.cpp

@ -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>

3
modules/gui/skins2/src/theme_repository.cpp

@ -30,9 +30,6 @@
#elif defined( WIN32 ) && !defined( UNDER_CE )
# include <direct.h>
#endif
#ifdef HAVE_DIRENT_H
# include <dirent.h>
#endif
#include <fstream>

3
modules/misc/gnutls.c

@ -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

5
src/extras/libc.c

@ -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>

4
src/input/subtitles.c

@ -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

4
src/modules/modules.c

@ -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>

4
src/text/filesystem.c

@ -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

Loading…
Cancel
Save