Mercurial > mplayer.hg
changeset 18979:494e8de479aa
10l, xvmclib(dir) does not specify a directory name.
author | diego |
---|---|
date | Sun, 09 Jul 2006 17:00:23 +0000 |
parents | 9f97ca988ea7 |
children | ed69754aa58d |
files | configure |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/configure Sun Jul 09 16:38:02 2006 +0000 +++ b/configure Sun Jul 09 17:00:23 2006 +0000 @@ -421,7 +421,7 @@ --with-xmmslibdir=DIR libxmms.so.1 in DIR --with-cdparanoiaincdir=DIR cdparanoia headers in DIR (*) --with-cdparanoialibdir=DIR cdparanoia libraries (libcdda_*) in DIR (*) - --with-xvmclibdir=NAME name of adapter-specific library (e.g. XvMCNVIDIA) + --with-xvmclib=NAME name of adapter-specific library (e.g. XvMCNVIDIA) --with-termcaplib=NAME name of library with termcap functionality name should be given without leading "lib" checks for "termcap" and "tinfo" @@ -3869,16 +3869,16 @@ (void) XvMCCreateContext(0,0,0,0,0,0,0); return 0; } EOF - for _ld_tmp in $_xvmclibdir XvMCNVIDIA XvMCW I810XvMC ; do - cc_check $_inc_x11 -lXvMC -l$_ld_tmp $_ld_xv $_ld_x11 && _xvmc=yes && _xvmclibdir="$_ld_tmp" && break + for _ld_tmp in $_xvmclib XvMCNVIDIA XvMCW I810XvMC ; do + cc_check $_inc_x11 -lXvMC -l$_ld_tmp $_ld_xv $_ld_x11 && _xvmc=yes && _xvmclib="$_ld_tmp" && break done fi if test "$_xvmc" = yes ; then _def_xvmc='#define HAVE_XVMC 1' - _ld_xvmc="-lXvMC -l$_xvmclibdir" + _ld_xvmc="-lXvMC -l$_xvmclib" _vosrc="$_vosrc vo_xvmc.c" _vomodules="xvmc $_vomodules" - _res_comment="using $_xvmclibdir" + _res_comment="using $_xvmclib" else _def_xvmc='#undef HAVE_XVMC' _novomodules="xvmc $_novomodules"