summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authoriive <iive@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-03-06 14:43:41 +0000
committeriive <iive@b3059339-0415-0410-9bf9-f77b7e298cf2>2005-03-06 14:43:41 +0000
commit8743fbdd1cfb48ca1e586d7a49ea8df0b4a2b360 (patch)
tree9e56da9de80c70606f541059297dd3f1594eb64d /configure
parentdb4b3802eae21672ccd3da8b3e4d944a1ead9268 (diff)
downloadmpv-8743fbdd1cfb48ca1e586d7a49ea8df0b4a2b360.tar.bz2
mpv-8743fbdd1cfb48ca1e586d7a49ea8df0b4a2b360.tar.xz
use inttypes.h for checks instead of less spread-ed stdint.h
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@14921 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure5
1 files changed, 2 insertions, 3 deletions
diff --git a/configure b/configure
index 86350ea421..c20d710c12 100755
--- a/configure
+++ b/configure
@@ -5264,7 +5264,7 @@ echocheck "libdts support"
if test "$_libdts" = auto ; then
_libdts=no
cat > $TMPC << EOF
-#include <stdint.h>
+#include <inttypes.h>
#include <dts.h>
int main(void) { dts_init (0); return 0; }
EOF
@@ -5917,8 +5917,7 @@ fi
echocheck "x264"
cat > $TMPC << EOF
-#include <stdint.h>
-#include <stdarg.h>
+#include <inttypes.h>
#include <x264.h>
#if X264_BUILD < 0x0014
#error We do not support old versions of x264. Get the latest from SVN.