python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / package / libnice / 0001-configure-Fix-configure-failure-when-building-without-.patch
blobf6b2eb4cb93bc3e65bbdd73a25c73c7938486790
1 From 81a929ac141aae66b6450e8ce93cb357ed404cda Mon Sep 17 00:00:00 2001
2 From: Timo Gurr <timo.gurr@gmail.com>
3 Date: Mon, 1 Jun 2015 16:10:16 +0200
4 Subject: [PATCH] configure: Fix configure failure when building without
5 gstreamer support
7 Error introduced in 20ea22e0a11a9bdfe4d8125b68083249b694338a, resulting in a
8 configure/build error when building without gstreamer:
10 configure: error: conditional "HAVE_GST_CHECK" was never defined.
11 Usually this means the macro was only invoked conditionally.
13 https://bugs.freedesktop.org/show_bug.cgi?id=90801
14 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
15 ---
16 Patch status: upstream
18 configure.ac | 4 +---
19 1 file changed, 1 insertion(+), 3 deletions(-)
21 diff --git a/configure.ac b/configure.ac
22 index 6031cec..64a571f 100644
23 --- a/configure.ac
24 +++ b/configure.ac
25 @@ -231,9 +231,6 @@ AS_IF([test "$with_gstreamer" != no], [
27 have_gst_check=no
30 - AM_CONDITIONAL(HAVE_GST_CHECK, test "$have_gst_check" = yes)
34 AS_IF([test "$with_gstreamer010" != no], [
35 @@ -260,6 +257,7 @@ AC_SUBST(gstplugindir)
36 AC_SUBST(gstplugin010dir)
38 AM_CONDITIONAL(WITH_GSTREAMER, test "$with_gstreamer" = yes)
39 +AM_CONDITIONAL(HAVE_GST_CHECK, test "$have_gst_check" = yes)
40 AM_CONDITIONAL(WITH_GSTREAMER010, test "$with_gstreamer010" = yes)
42 GUPNP_IGD_REQUIRED=0.2.4
43 --
44 2.10.2