diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2005-10-15 13:46:30 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2005-10-15 13:46:30 +0000 |
commit | f3484a2384ffee6cfd2fa7ea3e89a716d065dfe8 (patch) | |
tree | 0e634a8d2ffcaf8dc206990755e3d8e62f820bc4 | |
parent | 49749466639aae446e159f9e7e3fcf80eea1adf7 (diff) | |
download | xine-lib-f3484a2384ffee6cfd2fa7ea3e89a716d065dfe8.tar.gz xine-lib-f3484a2384ffee6cfd2fa7ea3e89a716d065dfe8.tar.bz2 |
Fix setting of the wrong variable if vldXvMC.h is not found.
CVS patchset: 7761
CVS date: 2005/10/15 13:46:30
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 728332175..4b85e7e25 100644 --- a/configure.ac +++ b/configure.ac @@ -659,7 +659,7 @@ fi if test x$ac_have_xxmc = "xyes"; then AC_CHECK_HEADERS(X11/extensions/vldXvMC.h, [ac_have_vldxvmc_h="yes"], - ac_have_xxmc="no",) + ac_have_vldxvmc="no",) if test "x$ac_have_vldxvmc_h" = "xyes"; then AC_DEFINE([HAVE_VLDXVMC], [1], [Define 1 if you have vldXvMC.h]) |