Commit 890da734 authored by Ralph Giles's avatar Ralph Giles Committed by 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: default avatarRafaël Carré <funman@videolan.org>
parent ca15b15b
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment