1
mirror of https://github.com/mpv-player/mpv synced 2025-01-01 04:36:24 +01:00

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
This commit is contained in:
iive 2005-03-06 14:43:41 +00:00
parent db4b3802ea
commit 8743fbdd1c

5
configure vendored
View File

@ -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.