summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorrathann <rathann@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-04-24 18:29:53 +0000
committerrathann <rathann@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-04-24 18:29:53 +0000
commit4bbefa1b61661f5b74af95319980a19fe1f02569 (patch)
treef997e1849929b74391806bb0b22630409950a3e2 /configure
parent2804f752df7edfd8f3e0f0fc37d862c7256be995 (diff)
downloadmpv-4bbefa1b61661f5b74af95319980a19fe1f02569.tar.bz2
mpv-4bbefa1b61661f5b74af95319980a19fe1f02569.tar.xz
- fix configure output for XvMC and DGA tests
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18256 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure7
1 files changed, 4 insertions, 3 deletions
diff --git a/configure b/configure
index f153260bbb..57e4ae2a5f 100755
--- a/configure
+++ b/configure
@@ -3738,11 +3738,12 @@ if test "$_xvmc" = yes ; then
_ld_xvmc="-lXvMC -l$_xvmclib"
_vosrc="$_vosrc vo_xvmc.c"
_vomodules="xvmc $_vomodules"
+ _res_comment="using $_xvmclib"
else
_def_xvmc='#undef HAVE_XVMC'
_novomodules="xvmc $_novomodules"
fi
-echores "$_xvmc (using $_xvmclib)"
+echores "$_xvmc"
echocheck "Xinerama"
@@ -3841,14 +3842,14 @@ if test "$_dga" = 1 ; then
_ld_dga='-lXxf86dga'
_vosrc="$_vosrc vo_dga.c"
_vomodules="dga $_vomodules"
- _res_comment="(using DGA 1.0)"
+ _res_comment="using DGA 1.0"
elif test "$_dga" = 2 ; then
_def_dga='#define HAVE_DGA 1'
_def_dga2='#define HAVE_DGA2 1'
_ld_dga='-lXxf86dga'
_vosrc="$_vosrc vo_dga.c"
_vomodules="dga $_vomodules"
- _res_comment="(using DGA 2.0)"
+ _res_comment="using DGA 2.0"
elif test "$_dga" = no ; then
_novomodules="dga $_novomodules"
else