configure: don't even check for Gtk+ if --disable-examples is specified

There are Gtk+-based examples in plugin dirs and tests/icles/ too, and
we want to disable those as well then.
This commit is contained in:
Tim-Philipp Müller 2010-11-05 00:32:35 +00:00
parent 1ab0aa6544
commit 2362acbec3

View file

@ -206,6 +206,7 @@ AC_SUBST(GSTPB_PREFIX)
dnl GTK is optional and used in examples
HAVE_GTK=NO
if test "x$BUILD_EXAMPLES" = "xyes"; then
AC_MSG_CHECKING([which gtk+ version to compile examples against (optional)])
AC_ARG_WITH([gtk],
AC_HELP_STRING([--with-gtk=3.0|2.0],
@ -217,6 +218,7 @@ AC_ARG_WITH([gtk],
[with_gtk=2.0])
AC_MSG_RESULT([$with_gtk])
PKG_CHECK_MODULES(GTK, gtk+-x11-$with_gtk, HAVE_GTK=yes, HAVE_GTK=no)
fi
AM_CONDITIONAL(HAVE_GTK, test "x$HAVE_GTK" = "xyes")
dnl Needed for GtkBuilder to autoconnect signals