From d53e9617fb6446780478bb13907efd111f241cd1 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 3 Nov 2016 01:20:33 -0700 Subject: [PATCH] Check for gtk2+ only when manager is enabled Signed-off-by: Khem Raj Upstream-Status: Pending --- configure.ac | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 7beeb34ae2..35234c2762 100644 --- a/configure.ac +++ b/configure.ac @@ -1018,6 +1018,11 @@ else AM_CONDITIONAL([GUI_GTK], false) fi +dnl ---------- GTK+2.0----------------------------------------------------- +if test "X${no_x}" != "Xyes"; then + PKG_CHECK_MODULES([GTK2], [gtk+-2.0]) +fi + dnl ---------- libNotify -------------------------------------------------- if test "${enable_manager}" = yes ; then PKG_CHECK_MODULES(LIBNOTIFY, [libnotify]) @@ -1069,7 +1074,6 @@ AM_CONDITIONAL(ENABLE_BOINCCRYPT, [test "x${enable_server}" = xyes || test "x${ AM_CONDITIONAL(INSTALL_HEADERS, [test "${enable_install_headers}" = yes]) AM_CONDITIONAL(HAVE_CUDA_LIB, [test "${enable_client}" = yes -a -f ./coprocs/CUDA/posix/${boinc_platform}/libcudart.so]) -PKG_CHECK_MODULES([GTK2], [gtk+-2.0]) dnl ====================================================================== dnl some more vodoo required for building portable client-binary (client, clientgui)