mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
configure: bump Gtk+ requirement of GUI examples from 2.12 to 2.14
The gio mount example needs GtkMountOperation, which is new in 2.14.
This commit is contained in:
parent
01e0fdd86c
commit
8db9496217
1 changed files with 2 additions and 2 deletions
|
@ -264,11 +264,11 @@ 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.12.0, HAVE_GTK=yes, HAVE_GTK=no)
|
||||
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.12.0,
|
||||
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")
|
||||
|
||||
|
|
Loading…
Reference in a new issue