diff options
author | Bastien Nocera <hadess@users.sourceforge.net> | 2005-12-24 15:35:59 +0000 |
---|---|---|
committer | Bastien Nocera <hadess@users.sourceforge.net> | 2005-12-24 15:35:59 +0000 |
commit | 6edfbdb15a312fc1cecb116a1462f2ceda248195 (patch) | |
tree | 6f3e713db85699a23b1ecb094866b15a2e9553f9 | |
parent | 29d9efb1c818c2e54e8b51da004bf47183bb4944 (diff) | |
download | xine-lib-6edfbdb15a312fc1cecb116a1462f2ceda248195.tar.gz xine-lib-6edfbdb15a312fc1cecb116a1462f2ceda248195.tar.bz2 |
* Disable the XXMC plugin if Xv support isn't there
CVS patchset: 7828
CVS date: 2005/12/24 15:35:59
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,6 @@ xine-lib (1.1.2) * Czech translation update + * Disable the XXMC plugin if Xv support isn't there xine-lib (1.1.1) * Improve sound quality when using alsa 1.0.9 or above. diff --git a/configure.ac b/configure.ac index 264fad845..20bf71820 100644 --- a/configure.ac +++ b/configure.ac @@ -637,7 +637,7 @@ XXMC_LIB="-L$xxmc_path -l$xxmc_stub" AC_MSG_CHECKING(whether to enable the xxmc plugin with vld extensions) AC_MSG_RESULT() dnl Check if vld "extended" XvMC is available -if test x$xxmc_stub == "xXvMCW"; then +if test x$xxmc_stub == "xXvMCW" && test x$ac_have_xv == "xyes"; then AC_CHECK_LIB($xxmc_stub, XvMCPutSlice, ac_have_xxmc="yes", [ac_have_xxmc="no" |