From 90161292d98fe2b8d03522924bbcb6c5277e7ff3 Mon Sep 17 00:00:00 2001 From: diego Date: Thu, 11 Feb 2010 08:52:15 +0000 Subject: Move def_dos_paths to a better place within config.h; not just FFmpeg uses it. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30535 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index f570c63081..428c6dfc33 100755 --- a/configure +++ b/configure @@ -8924,6 +8924,7 @@ $def_vsscanf $def_asmalign_pot $def_builtin_expect $def_dl +$def_dos_paths $def_extern_asm $def_extern_prefix $def_iconv @@ -9217,7 +9218,6 @@ $def_arpa_inet_h $def_bswap $def_bzlib $def_dcbzl -$def_dos_paths $def_fast_64bit $def_fast_unaligned $def_libavcodec_mpegaudio_hp -- cgit v1.2.3 From 13db72bd9639d15509358ec0fbc7f6d26c95c71c Mon Sep 17 00:00:00 2001 From: diego Date: Thu, 11 Feb 2010 10:52:36 +0000 Subject: Move some FFmpeg-related definitions to the FFmpeg section of config.h. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30536 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'configure') diff --git a/configure b/configure index 428c6dfc33..4a459f7f5c 100755 --- a/configure +++ b/configure @@ -8890,23 +8890,15 @@ $def_winsock2_h /* system functions */ -$def_exp2 -$def_exp2f $def_gethostbyname2 $def_gettimeofday $def_glob $def_langinfo -$def_llrint -$def_log2 -$def_log2f -$def_lrint $def_lrintf $def_map_memalign $def_memalign $def_nanosleep $def_posix_select -$def_round -$def_roundf $def_select $def_setenv $def_shm @@ -9218,14 +9210,22 @@ $def_arpa_inet_h $def_bswap $def_bzlib $def_dcbzl +$def_exp2 +$def_exp2f $def_fast_64bit $def_fast_unaligned $def_libavcodec_mpegaudio_hp +$def_llrint +$def_log2 +$def_log2f +$def_lrint $def_memalign_hack $def_mlib $def_mkstemp $def_posix_memalign $def_pthreads +$def_round +$def_roundf $def_ten_operands $def_threads $def_xform_asm -- cgit v1.2.3 From 19f5552dd17d66f305d6f70c0cd35e4abe373d8b Mon Sep 17 00:00:00 2001 From: diego Date: Thu, 11 Feb 2010 10:56:09 +0000 Subject: Move one more FFmpeg-related definition to the FFmpeg section of config.h. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30537 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index 4a459f7f5c..823ba60315 100755 --- a/configure +++ b/configure @@ -8908,7 +8908,6 @@ $def_sysi86 $def_sysi86_iv $def_termcap $def_termios -$def_truncf $def_vsscanf @@ -9228,6 +9227,7 @@ $def_round $def_roundf $def_ten_operands $def_threads +$def_truncf $def_xform_asm $def_yasm -- cgit v1.2.3 From 47f78d28f1298c9feccd2424ffdb211dab6aaf53 Mon Sep 17 00:00:00 2001 From: komh Date: Fri, 12 Feb 2010 01:38:14 +0000 Subject: Add win32 loader support for OS/2 git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30541 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index 823ba60315..274246f5b0 100755 --- a/configure +++ b/configure @@ -7129,7 +7129,7 @@ if test "$_real" = auto ; then _real=no _res_comment="dynamic loader support needed" if test "$_dl" = yes || test "$_win32dll" = yes && - (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32) ; then + (linux || freebsd || netbsd || openbsd || dragonfly || darwin || win32 || os2) ; then _real=yes fi fi -- cgit v1.2.3 From 93abb4f09229730c30e5bbdd6c54d4b981995eee Mon Sep 17 00:00:00 2001 From: diego Date: Sat, 13 Feb 2010 15:46:33 +0000 Subject: Fix shared library libavutil check: test for av_clip instead of av_gcd. av_gcd is not available in the header #included in the check. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30550 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure') diff --git a/configure b/configure index 274246f5b0..005ce0eda0 100755 --- a/configure +++ b/configure @@ -7249,7 +7249,7 @@ elif test "$_libavutil_so" = auto ; then _libavutil_so=no cat > $TMPC << EOF #include -int main(void) { av_gcd(1,1); return 0; } +int main(void) { av_clip(1, 1, 1); return 0; } EOF if $_pkg_config --exists libavutil ; then _inc_libavutil=$($_pkg_config --cflags libavutil) -- cgit v1.2.3