[libdvdcss-devel] [PATCH 2/7] Unconditionally use limits.h.
Diego Biurrun <[email protected]> Sun, 16 Nov 2014 20:37:09 +0100
| Newsgroups | gmane.comp.video.videolan.libdvdcss,gmane.comp.video.videolan.libdvdcss.devel |
|---|---|
| Message-ID | <[email protected]> |
The header is available in all toolchains we care about. --- configure.ac | 2 +- src/css.c | 5 +---- src/device.c | 5 +---- src/libdvdcss.c | 5 +---- src/libdvdcss.h | 6 +----- 5 files changed, 5 insertions(+), 18 deletions(-) diff --git a/configure.ac b/configure.ac index 5b8f79d..f37057f 100644 --- a/configure.ac +++ b/configure.ac @@ -52,7 +52,7 @@ AC_C_CONST AC_C_INLINE AC_TYPE_SIZE_T -AC_CHECK_HEADERS([unistd.h sys/param.h sys/uio.h limits.h pwd.h]dnl +AC_CHECK_HEADERS([unistd.h sys/param.h sys/uio.h pwd.h]dnl [errno.h sys/types.h sys/stat.h fcntl.h io.h]) AC_CHECK_DECL([O_BINARY], [], diff --git a/src/css.c b/src/css.c index 25c70c0..79cbefe 100644 --- a/src/css.c +++ b/src/css.c @@ -35,6 +35,7 @@ *****************************************************************************/ #include "config.h" +#include <limits.h> #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -47,10 +48,6 @@ #endif #include <fcntl.h> -#ifdef HAVE_LIMITS_H -# include <limits.h> -#endif - #include "dvdcss/dvdcss.h" #include "common.h" diff --git a/src/device.c b/src/device.c index 2e0c463..51b41be 100644 --- a/src/device.c +++ b/src/device.c @@ -27,6 +27,7 @@ *****************************************************************************/ #include "config.h" +#include <limits.h> #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -44,10 +45,6 @@ # include <unistd.h> #endif -#ifdef HAVE_LIMITS_H -# include <limits.h> -#endif - #ifdef DARWIN_DVD_IOCTL # include <paths.h> # include <CoreFoundation/CoreFoundation.h> diff --git a/src/libdvdcss.c b/src/libdvdcss.c index c57773a..4a58675 100644 --- a/src/libdvdcss.c +++ b/src/libdvdcss.c @@ -97,6 +97,7 @@ */ #include "config.h" +#include <limits.h> #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -115,10 +116,6 @@ # include <unistd.h> #endif -#ifdef HAVE_LIMITS_H -# include <limits.h> -#endif - #if defined(_WIN32_IE) && _WIN32_IE >= 0x500 # include <shlobj.h> #endif diff --git a/src/libdvdcss.h b/src/libdvdcss.h index c08fadc..31c15bc 100644 --- a/src/libdvdcss.h +++ b/src/libdvdcss.h @@ -24,11 +24,7 @@ #ifndef DVDCSS_LIBDVDCSS_H #define DVDCSS_LIBDVDCSS_H -#include "config.h" - -#ifdef HAVE_LIMITS_H -# include <limits.h> -#endif +#include <limits.h> #include "dvdcss/dvdcss.h" #include "css.h" -- 2.1.0 _______________________________________________ libdvdcss-devel mailing list [email protected] https://mailman.videolan.org/listinfo/libdvdcss-devel