diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-05-21 16:47:00 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-05-21 17:13:10 +0800 |
commit | 87524d43add5732091025b0f76661c09a06bb116 (patch) | |
tree | 66a63cf702ed11294bcb48ba3bb000f5e109e868 | |
parent | 001e077b3575d2525bb7354d78e0e25837db73e7 (diff) | |
download | gsoc2013-empathy-87524d43add5732091025b0f76661c09a06bb116.tar gsoc2013-empathy-87524d43add5732091025b0f76661c09a06bb116.tar.gz gsoc2013-empathy-87524d43add5732091025b0f76661c09a06bb116.tar.bz2 gsoc2013-empathy-87524d43add5732091025b0f76661c09a06bb116.tar.lz gsoc2013-empathy-87524d43add5732091025b0f76661c09a06bb116.tar.xz gsoc2013-empathy-87524d43add5732091025b0f76661c09a06bb116.tar.zst gsoc2013-empathy-87524d43add5732091025b0f76661c09a06bb116.zip |
configure.ac: set cheese version in CHEESE_GTK_REQUIRED
https://bugzilla.gnome.org/show_bug.cgi?id=674553
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index b061db4a1..9a8b0f45d 100644 --- a/configure.ac +++ b/configure.ac @@ -73,6 +73,7 @@ ISO_CODES_REQUIRED=0.35 NAUTILUS_SENDTO_REQUIRED=2.90.0 NETWORK_MANAGER_REQUIRED=0.7.0 CHAMPLAIN_REQUIRED=0.12.1 +CHEESE_GTK_REQUIRED=2.91.91.1 # Use --enable-maintainer-mode to disable deprecated symbols, # disable single include and enable GSEAL. If this is not a released empathy, @@ -579,7 +580,7 @@ AC_ARG_WITH([cheese], with_cheese=auto) if test x"$with_cheese" != x"no" ; then - PKG_CHECK_MODULES(CHEESE, gstreamer-0.10 cheese-gtk >= 2.91.91.1, [have_cheese=yes], [have_cheese=no]) + PKG_CHECK_MODULES(CHEESE, gstreamer-0.10 cheese-gtk >= CHEESE_GTK_REQUIRED, [have_cheese=yes], [have_cheese=no]) if test x${have_cheese} = xyes; then AC_DEFINE(HAVE_CHEESE, 1, [Define to 1 to enable cheese webcam support]) fi |