From 890da7340e277cc865309dd45d918fb10e4578fe Mon Sep 17 00:00:00 2001 From: Ralph Giles Date: Thu, 24 Nov 2011 17:41:54 -0800 Subject: [PATCH] Fix the condition for HAVE_QTKIT. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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é --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.39.2