configure.ac: error while checking for XDMXCONFIG_DEP
Introduced in commit 9998105a387e0294054502331a56e1e020cd93e4 The replacement third parameters to PKG_CHECK_MODULES([DMXMODULES] was not quoted. Signed-off-by: Gaetan Nadon <memsize@videotron.ca> Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> Tested-by: Julien Cristau <jcristau@debian.org> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
761ae22f88
commit
91c1bd78f7
10
configure.ac
10
configure.ac
|
@ -1881,10 +1881,14 @@ AM_CONDITIONAL(XQUARTZ_SPARKLE, [test "x$XQUARTZ_SPARKLE" != "xno"])
|
||||||
AM_CONDITIONAL(STANDALONE_XPBPROXY, [test "x$STANDALONE_XPBPROXY" = xyes])
|
AM_CONDITIONAL(STANDALONE_XPBPROXY, [test "x$STANDALONE_XPBPROXY" = xyes])
|
||||||
|
|
||||||
dnl DMX DDX
|
dnl DMX DDX
|
||||||
PKG_CHECK_MODULES([DMXMODULES],
|
PKG_CHECK_MODULES(
|
||||||
|
[DMXMODULES],
|
||||||
[xmuu $LIBXEXT x11 xrender xfixes xfont $LIBXI $DMXPROTO xau $XDMCP_MODULES],
|
[xmuu $LIBXEXT x11 xrender xfixes xfont $LIBXI $DMXPROTO xau $XDMCP_MODULES],
|
||||||
PKG_CHECK_MODULES([XDMXCONFIG_DEP], [xaw7 xmu xt xpm x11], [have_dmx=yes],
|
[PKG_CHECK_MODULES(
|
||||||
[have_dmx=no]),
|
[XDMXCONFIG_DEP],
|
||||||
|
[xaw7 xmu xt xpm x11],
|
||||||
|
[have_dmx=yes],
|
||||||
|
[have_dmx=no])],
|
||||||
[have_dmx=no])
|
[have_dmx=no])
|
||||||
AC_MSG_CHECKING([whether to build Xdmx DDX])
|
AC_MSG_CHECKING([whether to build Xdmx DDX])
|
||||||
if test "x$DMX" = xauto; then
|
if test "x$DMX" = xauto; then
|
||||||
|
|
Loading…
Reference in New Issue