diff options
author | Stephen Torri <storri@users.sourceforge.net> | 2004-12-12 04:25:05 +0000 |
---|---|---|
committer | Stephen Torri <storri@users.sourceforge.net> | 2004-12-12 04:25:05 +0000 |
commit | f5e91a956b0df782bbdfb23beb319846ca2ebe4f (patch) | |
tree | fa210c4cdbfecbbdcbc0c836f13e1f48f6940874 /m4 | |
parent | b5735b6b5f91a81b113a28fccd92ef906caa7692 (diff) | |
download | xine-lib-f5e91a956b0df782bbdfb23beb319846ca2ebe4f.tar.gz xine-lib-f5e91a956b0df782bbdfb23beb319846ca2ebe4f.tar.bz2 |
Update xv.m4. There was two different autoconfigure variables being
used, xv_lib and XV_LIB. The problem with this is that XV_LIB is used
to set the Xv library to use in the makefiles. I chose to use XV_LIB
throughout the m4 file.
CVS patchset: 7229
CVS date: 2004/12/12 04:25:05
Diffstat (limited to 'm4')
-rw-r--r-- | m4/xv.m4 | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -6,7 +6,7 @@ AC_DEFUN([AC_PATH_LIBXV_IMPL], AC_MSG_CHECKING([for $1]) if test -f "$xv_path/$1"; then AC_MSG_RESULT([found $1 in $xv_path]) - xv_lib="$1" + XV_LIB="$1" else AC_MSG_RESULT([$1 not found in $xv_path]) fi @@ -24,7 +24,7 @@ AC_DEFUN([AC_TEST_LIBXV], [Define this if you have libXv installed]) ac_have_xv="yes" - if test x$xv_lib = "xlibXv.a" ; then + if test x$XV_LIB = "xlibXv.a" ; then AC_DEFINE(HAVE_XV_STATIC, 1, @@ -51,7 +51,7 @@ AC_DEFUN([AC_TEST_LIBXV], # AC_PATH_LIBXV # ------------------------- # -AC_DEFUN([AC_PATH_LIBXV], +AC_DEFUN([AC_FIND_LIBXV], [ # Ensure that AC_PATH_XTRA is executed before this AC_REQUIRE([AC_PATH_XTRA]) @@ -67,7 +67,7 @@ AC_DEFUN([AC_PATH_LIBXV], AC_PATH_LIBXV_IMPL([libXv.a]) fi - if ! test -z $xv_lib; then + if ! test -z $XV_LIB; then AC_TEST_LIBXV fi ]) |