From: Ralph Giles Date: Fri, 25 Nov 2011 01:41:54 +0000 (-0800) Subject: Fix the condition for HAVE_QTKIT. X-Git-Tag: 1.3.0-git~73 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=890da7340e277cc865309dd45d918fb10e4578fe;p=vlc 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é --- diff --git a/configure.ac b/configure.ac index aa5cc39a8a..cb14be23ac 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