diff options
author | Matt Messier <mmessier@grapetv.org> | 2007-05-12 17:24:32 -0400 |
---|---|---|
committer | Matt Messier <mmessier@grapetv.org> | 2007-05-12 17:24:32 -0400 |
commit | 3146f2b79aacbfd102c6883ad15108350c18109a (patch) | |
tree | 693a2b2346ea32bfa5f2a7747bcefd2d60bc4011 | |
parent | 51e8dac9666d4f18a352ff61063464c02e7be6aa (diff) | |
download | xine-lib-3146f2b79aacbfd102c6883ad15108350c18109a.tar.gz xine-lib-3146f2b79aacbfd102c6883ad15108350c18109a.tar.bz2 |
Fix stupid typos: instances of $" should be "$
-rw-r--r-- | m4/audio_out.m4 | 2 | ||||
-rw-r--r-- | m4/decoders.m4 | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/m4/audio_out.m4 b/m4/audio_out.m4 index 8c2d63f86..0b54c5d51 100644 --- a/m4/audio_out.m4 +++ b/m4/audio_out.m4 @@ -104,7 +104,7 @@ AC_DEFUN([XINE_AUDIO_OUT_PLUGINS], [ AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[return 0]])], [have_coreaudio=yes], [have_coreaudio=no]) LIBS="$ac_save_LIBS" AC_MSG_RESULT([$have_coreaudio]) - if test x"$enable_coreaudio" = x"yes" && test x$"have_coreaudio" != x"yes"; then + if test x"$enable_coreaudio" = x"yes" && test x"$have_coreaudio" != x"yes"; then AC_MSG_ERROR([CoreAudio support requested, but CoreAudio not found]) fi fi diff --git a/m4/decoders.m4 b/m4/decoders.m4 index 2b048c1dd..665e93a27 100644 --- a/m4/decoders.m4 +++ b/m4/decoders.m4 @@ -164,14 +164,14 @@ use internal ffmpeg. [AS_HELP_STRING([--with-external-libmad], [use external libmad library (not recommended)])], [], [with_external_libmad=no]) if test x"$enable_mad" != x"no"; then - if test x$"with_external_libmad" != x"no"; then + if test x"$with_external_libmad" != x"no"; then PKG_CHECK_MODULES([LIBMAD], [mad], [AC_CHECK_HEADERS([mad.h], [], [with_external_libmad=no])], [with_external_libmad=no]) - if test x$"with_external_libmad" = x"no"; then + if test x"$with_external_libmad" = x"no"; then AC_MSG_RESULT([*** no usable version of libmad found, using internal copy ***]) fi fi - if test x$"with_external_libmad" != x"no"; then + if test x"$with_external_libmad" != x"no"; then AC_MSG_RESULT([Using included libmad support]) case "$host_or_hostalias" in i?86-* | k?-* | athlon-* | pentium*-) @@ -287,7 +287,7 @@ use internal ffmpeg. AC_ARG_ENABLE([mlib-lazyload], [AS_HELP_STRING([--enable-mlib-lazyload], [check for Sun mediaLib at runtime])], [], [enable_mlib_lazyload=no]) - if test x$"enable_mlib" != x"no"; then + if test x"$enable_mlib" != x"no"; then mlibhome="$MLIBHOME" test x"$mlibhome" = x"" && mlibhome="/opt/SUNWmlib" AC_CHECK_LIB([mlib], [mlib_VideoAddBlock_U8_S16], |