]> git.sesse.net Git - vlc/commitdiff
Remove useless (partially used) check for stdint.h
authorRémi Denis-Courmont <remi@remlab.net>
Fri, 10 Apr 2009 13:33:54 +0000 (16:33 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Fri, 10 Apr 2009 14:05:13 +0000 (17:05 +0300)
configure.ac
modules/audio_filter/channel_mixer/mono.c
modules/audio_filter/converter/a52tofloat32.c

index a0ce1bca466dcc469f9f658bfab0ec7ebc30c721..1c03f55bf38748d808ff34260231debc8cf8e2df 100644 (file)
@@ -829,7 +829,7 @@ AC_EGREP_HEADER(strncasecmp,strings.h,[
   AC_MSG_RESULT(no)])
 
 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([arpa/inet.h netinet/in.h netinet/udplite.h sys/eventfd.h])
 AC_CHECK_HEADERS([net/if.h], [], [],
index f6a95f55f53b8858b37be7fde0b08ccf115e8e34..77bc29f2b1e346cb46283e28396c7e3a086cf369 100644 (file)
 #endif
 
 #include <math.h>                                        /* sqrt */
-
-#ifdef HAVE_STDINT_H
-#   include <stdint.h>                                         /* int16_t .. */
-#else
-#   include <inttypes.h>                                       /* int16_t .. */
-#endif
+#include <stdint.h>                                         /* int16_t .. */
 
 #ifdef HAVE_UNISTD_H
 #   include <unistd.h>
index 572817ef149b7b70e50c77d6b366593e300fea79..ad18a0ed907b34a1460a1d52faa5783f7f407930 100644 (file)
 #include <vlc_common.h>
 #include <vlc_plugin.h>
 
-#ifdef HAVE_STDINT_H
-#   include <stdint.h>                                         /* int16_t .. */
-#else
-#   include <inttypes.h>                                       /* int16_t .. */
-#endif
+#include <stdint.h>                                         /* int16_t .. */
 
 #ifdef HAVE_UNISTD_H
 #   include <unistd.h>