Commit dd029e35 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove useless (partially used) check for stdint.h

parent 3054d03d
...@@ -829,7 +829,7 @@ AC_EGREP_HEADER(strncasecmp,strings.h,[ ...@@ -829,7 +829,7 @@ AC_EGREP_HEADER(strncasecmp,strings.h,[
AC_MSG_RESULT(no)]) AC_MSG_RESULT(no)])
dnl Check for headers dnl Check for headers
AC_CHECK_HEADERS(time.h stdint.h getopt.h strings.h locale.h) AC_CHECK_HEADERS(time.h getopt.h strings.h locale.h)
AC_CHECK_HEADERS(fcntl.h sys/types.h sys/time.h sys/times.h sys/ioctl.h sys/stat.h xlocale.h) AC_CHECK_HEADERS(fcntl.h sys/types.h sys/time.h sys/times.h sys/ioctl.h sys/stat.h xlocale.h)
AC_CHECK_HEADERS([arpa/inet.h netinet/in.h netinet/udplite.h sys/eventfd.h]) AC_CHECK_HEADERS([arpa/inet.h netinet/in.h netinet/udplite.h sys/eventfd.h])
AC_CHECK_HEADERS([net/if.h], [], [], AC_CHECK_HEADERS([net/if.h], [], [],
......
...@@ -29,12 +29,7 @@ ...@@ -29,12 +29,7 @@
#endif #endif
#include <math.h> /* sqrt */ #include <math.h> /* sqrt */
#include <stdint.h> /* int16_t .. */
#ifdef HAVE_STDINT_H
# include <stdint.h> /* int16_t .. */
#else
# include <inttypes.h> /* int16_t .. */
#endif
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
# include <unistd.h> # include <unistd.h>
......
...@@ -34,11 +34,7 @@ ...@@ -34,11 +34,7 @@
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_plugin.h> #include <vlc_plugin.h>
#ifdef HAVE_STDINT_H #include <stdint.h> /* int16_t .. */
# include <stdint.h> /* int16_t .. */
#else
# include <inttypes.h> /* int16_t .. */
#endif
#ifdef HAVE_UNISTD_H #ifdef HAVE_UNISTD_H
# include <unistd.h> # include <unistd.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment