[MPlayer-cvslog] r20152 - trunk/configure

diego subversion at mplayerhq.hu
Wed Oct 11 01:14:40 CEST 2006


Author: diego
Date: Wed Oct 11 01:14:40 2006
New Revision: 20152

Modified:
   trunk/configure

Log:
Change == to = in test comparisons for better portability.
patch from NetBSD pkgsrc


Modified: trunk/configure
==============================================================================
--- trunk/configure	(original)
+++ trunk/configure	Wed Oct 11 01:14:40 2006
@@ -6206,7 +6206,7 @@
   elif cc_check -lavutil $_ld_lm ; then
     _libavutil_so=yes
   fi
-  if test "$_libavutil_so" == yes ; then
+  if test "$_libavutil_so" = yes ; then
     _res_comment="using libavutil.so, but static libavutil is recommended"
   fi
 fi
@@ -6237,7 +6237,7 @@
   elif cc_check -lavcodec $_ld_lm ; then
     _libavcodec_so=yes
   fi
-  if test "$_libavcodec_so" == yes ; then
+  if test "$_libavcodec_so" = yes ; then
     _res_comment="using libavcodec.so, but static libavcodec is recommended"
   fi
 fi
@@ -6260,7 +6260,7 @@
   elif cc_check $_ld_lm -lavformat ; then
     _libavformat_so=yes  
   fi
-  if test "$_libavformat_so" == yes ; then
+  if test "$_libavformat_so" = yes ; then
     _res_comment="using libavformat.so, but static libavformat is recommended"
   fi
 fi



More information about the MPlayer-cvslog mailing list