[vlc-commits] Fix the condition for HAVE_QTKIT.

Ralph Giles git at videolan.org
Fri Nov 25 02:55:04 CET 2011


vlc | branch: master | Ralph Giles <giles at mozilla.com> | Thu Nov 24 17:41:54 2011 -0800| [890da7340e277cc865309dd45d918fb10e4578fe] | committer: Rafaël Carré

Fix the condition for HAVE_QTKIT.

    The AM_CONDITIONAL call for HAVE_QTKIT has had a bug since
    3ddb9e51, where a 'test' invocation was elided. On MacOS X
    10.7.2 this caused the configure script to hang with an
    obscure launchd message:

      launch_msg("CheckIn") IPC failure: Operation not permitted

    This patch restores the intended logic.

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

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

 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.ac b/configure.ac
index aa5cc39..cb14be2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2105,7 +2105,7 @@ then
   VLC_ADD_PLUGIN([qtcapture])
   VLC_ADD_PLUGIN([qtsound])
 fi
-AM_CONDITIONAL(HAVE_QTKIT, [test "${SYS}" = "darwin" && "x${enable_macosx_qtkit}" != "xno"])
+AM_CONDITIONAL(HAVE_QTKIT, [test "${SYS}" = "darwin" -a "x${enable_macosx_qtkit}" != "xno"])
 
 
 dnl



More information about the vlc-commits mailing list