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

index 77db452218f0d477d24c0be796f47386d2ec6502..e6877fc06b0ed8c055e0f8276389c57016fc07f4 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 errno.h stdint.h stdbool.h getopt.h strings.h inttypes.h sys/int_types.h wchar.h locale.h)
+AC_CHECK_HEADERS(time.h errno.h stdint.h stdbool.h getopt.h strings.h sys/int_types.h wchar.h locale.h)
 AC_CHECK_HEADERS(sys/sockio.h 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 aa7562f6d9a1c281a037e59208a608ebd54084ce..f6a95f55f53b8858b37be7fde0b08ccf115e8e34 100644 (file)
@@ -32,7 +32,7 @@
 
 #ifdef HAVE_STDINT_H
 #   include <stdint.h>                                         /* int16_t .. */
-#elif defined(HAVE_INTTYPES_H)
+#else
 #   include <inttypes.h>                                       /* int16_t .. */
 #endif
 
index f8a900dffb92c3116f7b9c9a3f60bc2364f80602..572817ef149b7b70e50c77d6b366593e300fea79 100644 (file)
@@ -36,7 +36,7 @@
 
 #ifdef HAVE_STDINT_H
 #   include <stdint.h>                                         /* int16_t .. */
-#elif HAVE_INTTYPES_H
+#else
 #   include <inttypes.h>                                       /* int16_t .. */
 #endif