diff options
author | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2004-12-13 17:50:20 +0000 |
---|---|---|
committer | Miguel Freitas <miguelfreitas@users.sourceforge.net> | 2004-12-13 17:50:20 +0000 |
commit | ed76d1094dc9f16da5d6bc366a9f0961cf422935 (patch) | |
tree | eea92cfbbcabda0d08c215483395a56072f905d0 /configure.ac | |
parent | 399e34988e424748b8714f67d7b74aeea8afcb2f (diff) | |
download | xine-lib-ed76d1094dc9f16da5d6bc366a9f0961cf422935.tar.gz xine-lib-ed76d1094dc9f16da5d6bc366a9f0961cf422935.tar.bz2 |
get xine to compile again...
try some fallbacking (libXv.so <-> libXv.a) if prefered was not found
CVS patchset: 7244
CVS date: 2004/12/13 17:50:20
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 1e6934173..cca03bb5c 100644 --- a/configure.ac +++ b/configure.ac @@ -524,7 +524,7 @@ fi case "$host_or_hostalias" in hppa*) - if test "$XV_LIB" = "libXv.a"; then + if test x$ac_have_xv_static = "xyes"; then echo "warning: hppa linker - disabling static libXv" XV_LIB="libXv.so" fi @@ -2456,7 +2456,7 @@ if test x"$no_x" != "xyes"; then fi dnl Xv if test x$ac_have_xv = "xyes"; then - if test x$XV_LIB="xlibXv.a"; then + if test x$ac_have_xv_static = "xyes"; then echo " - Xv (XVideo *static*)" else echo " - Xv (XVideo *shared*)" |