mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
configure: Check for GTK+ 3.0 and if it's not available for GTK+ 2.0
This commit is contained in:
parent
6914986cb3
commit
8ea2e94a7d
1 changed files with 4 additions and 3 deletions
|
@ -278,12 +278,13 @@ AC_SUBST(GLIB_PREFIX)
|
|||
AC_SUBST(GST_PREFIX)
|
||||
|
||||
dnl GTK is optional and only used in examples
|
||||
PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.14.0, HAVE_GTK=yes, HAVE_GTK=no)
|
||||
PKG_CHECK_MODULES(GTK, gtk+-3.0, HAVE_GTK=yes,
|
||||
[PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.14.0, HAVE_GTK=yes, HAVE_GTK=no)])
|
||||
AM_CONDITIONAL(HAVE_GTK, test "x$HAVE_GTK" = "xyes")
|
||||
|
||||
dnl some examples need gtk+-x11
|
||||
PKG_CHECK_MODULES(GTK_X11, gtk+-x11-2.0 >= 2.14.0,
|
||||
HAVE_GTK_X11=yes, HAVE_GTK_X11=no)
|
||||
PKG_CHECK_MODULES(GTK_X11, gtk+-x11-3.0, HAVE_GTK_X11=yes,
|
||||
[PKG_CHECK_MODULES(GTK_X11, gtk+-x11-2.0 >= 2.14.0, HAVE_GTK_X11=yes, HAVE_GTK_X11=no)])
|
||||
AM_CONDITIONAL(HAVE_GTK_X11, test "x$HAVE_GTK_X11" = "xyes")
|
||||
|
||||
dnl QT is optional and only used in examples
|
||||
|
|
Loading…
Reference in a new issue