Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
249229af
Commit
249229af
authored
Feb 03, 2008
by
Rémi Denis-Courmont
Browse files
We don't check for limits.h, so don't use HAVE_LIMITS_H
parent
af48cdef
Changes
8
Hide whitespace changes
Inline
Side-by-side
modules/demux/mp4/drms.c
View file @
249229af
...
...
@@ -63,9 +63,7 @@
#endif
/* In Solaris (and perhaps others) PATH_MAX is in limits.h. */
#ifdef HAVE_LIMITS_H
# include <limits.h>
#endif
#include <limits.h>
#ifdef __APPLE__
# include <mach/mach.h>
...
...
modules/gui/qt4/components/info_panels.hpp
View file @
249229af
...
...
@@ -36,9 +36,7 @@
#include <QWidget>
#include <QLabel>
#ifdef HAVE_LIMITS_H
# include <limits.h>
#endif
#include <limits.h>
#define setSpinBounds( spinbox ) { \
spinbox->setRange( 0, INT_MAX ); \
...
...
modules/gui/qt4/components/open_panels.hpp
View file @
249229af
...
...
@@ -43,9 +43,7 @@
#include "components/preferences_widgets.hpp"
#ifdef HAVE_LIMITS_H
# include <limits.h>
#endif
#include <limits.h>
#define setSpinBoxFreq( spinbox ){ spinbox->setRange ( 0, INT_MAX ); \
spinbox->setAccelerated( true ); }
...
...
modules/misc/dummy/decoder.c
View file @
249229af
...
...
@@ -46,9 +46,7 @@
# include <fcntl.h>
#endif
#ifdef HAVE_LIMITS_H
# include <limits.h>
/* PATH_MAX */
#endif
#include <limits.h>
/* PATH_MAX */
#include "dummy.h"
...
...
modules/video_filter/mosaic.c
View file @
249229af
...
...
@@ -33,10 +33,7 @@
#include <vlc_vout.h>
#include <math.h>
#ifdef HAVE_LIMITS_H
# include <limits.h>
/* INT_MAX */
#endif
#include <limits.h>
/* INT_MAX */
#include "vlc_filter.h"
#include "vlc_image.h"
...
...
src/config/cmdline.c
View file @
249229af
...
...
@@ -31,10 +31,7 @@
#include "vlc_charset.h"
#include <errno.h>
/* errno */
#ifdef HAVE_LIMITS_H
# include <limits.h>
#endif
#include <limits.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
/* getuid() */
...
...
src/config/file.c
View file @
249229af
...
...
@@ -33,10 +33,7 @@
#include <errno.h>
/* errno */
#include <stdbool.h>
#include <assert.h>
#ifdef HAVE_LIMITS_H
# include <limits.h>
#endif
#include <limits.h>
#include "configuration.h"
#include "modules/modules.h"
...
...
src/input/subtitles.c
View file @
249229af
...
...
@@ -39,9 +39,7 @@
# include <dirent.h>
#endif
#ifdef HAVE_LIMITS_H
# include <limits.h>
#endif
#include <limits.h>
#ifdef HAVE_UNISTD_H
# include <unistd.h>
...
...
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