]> git.sesse.net Git - vlc/commitdiff
configure: posix test does not understand ==
authorKO Myung-Hun <komh78@gmail.com>
Sun, 14 Oct 2012 11:20:09 +0000 (20:20 +0900)
committerRafaël Carré <funman@videolan.org>
Sun, 14 Oct 2012 17:25:06 +0000 (19:25 +0200)
Signed-off-by: Rafaël Carré <funman@videolan.org>
configure.ac

index 912c711d20c543a829690ef6a7b1abc60cde37e1..d426b1a4e5fe6c6c640b5b86cd9d2dd64627ce1c 100644 (file)
@@ -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:])