[vlc-commits] configure: posix test does not understand ==

KO Myung-Hun git at videolan.org
Sun Oct 14 19:25:40 CEST 2012


vlc | branch: master | KO Myung-Hun <komh78 at gmail.com> | Sun Oct 14 20:20:09 2012 +0900| [d9745f66613976f3722a3b42c8b0750b8bd8a0a5] | committer: Rafaël Carré

configure: posix test does not understand ==

Signed-off-by: Rafaël Carré <funman at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d9745f66613976f3722a3b42c8b0750b8bd8a0a5
---

 configure.ac |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index 912c711..d426b1a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2310,12 +2310,12 @@ AS_IF([test "${enable_vda}" != "no"], [
         AC_CHECK_HEADERS(libavcodec/vda.h, [
            have_avcodec_vda="yes"
         ],[
-	AS_IF([test "${enable_vda}" == "yes"],
+	AS_IF([test "${enable_vda}" = "yes"],
 	      [AC_MSG_ERROR([vda is present but libavcodec/vda.h is missing])],
               [AC_MSG_WARN([vda is present but libavcodec/vda.h is missing ])])
         ])
   ],[
-	AS_IF([test "${enable_vda}" == "yes"],
+	AS_IF([test "${enable_vda}" = "yes"],
               [AC_MSG_ERROR([Could not find required VideoDecodeAcceleration/VDADecoder.h])],
               [AC_MSG_WARN([VideoDecodeAcceleration/VDADecoder.h not found])])
       ])
@@ -3948,7 +3948,7 @@ AS_IF([test "${enable_loader}" = "yes"],
     VLC_ADD_LIBS([dmo quicktime], [-lpthread])
   ])
 
-AS_IF([test "${SYS}" == "mingw32"], [VLC_ADD_PLUGIN([dmo]) VLC_ADD_LIBS([dmo],[-lole32 -luuid]) ])
+AS_IF([test "${SYS}" = "mingw32"], [VLC_ADD_PLUGIN([dmo]) VLC_ADD_LIBS([dmo],[-lole32 -luuid]) ])
 
 EXTEND_HELP_STRING([Components:])
 



More information about the vlc-commits mailing list