Mercurial > mplayer.hg
comparison configure @ 14920:824bb857aa7e
use inttypes.h for checks instead of less spread-ed stdint.h
author | iive |
---|---|
date | Sun, 06 Mar 2005 14:43:41 +0000 |
parents | 68582488a5d6 |
children | 4f43e3452b36 |
comparison
equal
deleted
inserted
replaced
14919:1d4861b2ac4a | 14920:824bb857aa7e |
---|---|
5262 | 5262 |
5263 echocheck "libdts support" | 5263 echocheck "libdts support" |
5264 if test "$_libdts" = auto ; then | 5264 if test "$_libdts" = auto ; then |
5265 _libdts=no | 5265 _libdts=no |
5266 cat > $TMPC << EOF | 5266 cat > $TMPC << EOF |
5267 #include <stdint.h> | 5267 #include <inttypes.h> |
5268 #include <dts.h> | 5268 #include <dts.h> |
5269 int main(void) { dts_init (0); return 0; } | 5269 int main(void) { dts_init (0); return 0; } |
5270 EOF | 5270 EOF |
5271 cc_check $_inc_libdts $_ld_libdts -ldts $_ld_lm && _libdts=yes | 5271 cc_check $_inc_libdts $_ld_libdts -ldts $_ld_lm && _libdts=yes |
5272 fi | 5272 fi |
5915 echores "$_xvidcompat" | 5915 echores "$_xvidcompat" |
5916 fi | 5916 fi |
5917 | 5917 |
5918 echocheck "x264" | 5918 echocheck "x264" |
5919 cat > $TMPC << EOF | 5919 cat > $TMPC << EOF |
5920 #include <stdint.h> | 5920 #include <inttypes.h> |
5921 #include <stdarg.h> | |
5922 #include <x264.h> | 5921 #include <x264.h> |
5923 #if X264_BUILD < 0x0014 | 5922 #if X264_BUILD < 0x0014 |
5924 #error We do not support old versions of x264. Get the latest from SVN. | 5923 #error We do not support old versions of x264. Get the latest from SVN. |
5925 #endif | 5924 #endif |
5926 int main(void) { x264_encoder_open((void*)0); return 0; } | 5925 int main(void) { x264_encoder_open((void*)0); return 0; } |