diff options
author | Jose Antonio Santos Cadenas <santoscadenas@gmail.com> | 2015-03-24 12:07:34 +0100 |
---|---|---|
committer | Olivier CrĂȘte <olivier.crete@collabora.com> | 2015-03-27 19:42:00 -0400 |
commit | 20ea22e0a11a9bdfe4d8125b68083249b694338a (patch) | |
tree | 205aa55611a644047a1fbd3b0fb4adc27bb7c2d1 /configure.ac | |
parent | 781f3ab12c48c79da13dee4073f56a3936a5dced (diff) | |
download | libnice-20ea22e0a11a9bdfe4d8125b68083249b694338a.tar.gz |
nicesink: Add test for buffer list support
https://bugs.freedesktop.org/show_bug.cgi?id=89609
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 4f5f619..3b4e105 100644 --- a/configure.ac +++ b/configure.ac @@ -203,7 +203,7 @@ AC_ARG_WITH(gstreamer-0.10, [with_gstreamer010=auto]) AS_IF([test "$with_gstreamer" != no], [ - + PKG_CHECK_MODULES(GST, [ gstreamer-1.0 >= 0.11.91 gstreamer-base-1.0 >= 0.11.91 @@ -220,6 +220,19 @@ AS_IF([test "$with_gstreamer" != no], [ with_gstreamer=no ]) + + PKG_CHECK_MODULES(GST_CHECK, [ + gstreamer-check-1.0 >= 0.11.91 + ], + [ + have_gst_check=yes + ], + [ + have_gst_check=no + ]) + + AM_CONDITIONAL(HAVE_GST_CHECK, test "$have_gst_check" = yes) + ]) AS_IF([test "$with_gstreamer010" != no], [ |