From: Tim-Philipp Müller Date: Fri, 22 Mar 2013 15:30:32 +0000 (+0000) Subject: configure: fix build if gnutls is not present X-Git-Tag: 1.19.3~507^2~13921 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=659adfdea8a78c29a7110a33580de8581eea44c1;p=platform%2Fupstream%2Fgstreamer.git configure: fix build if gnutls is not present Skip build of hls plugin if gnutls headers can't be found. https://bugzilla.gnome.org/show_bug.cgi?id=696392 --- diff --git a/configure.ac b/configure.ac index 10e5403..329c8ce 100644 --- a/configure.ac +++ b/configure.ac @@ -2136,7 +2136,7 @@ AG_GST_CHECK_FEATURE(SNDIO, [sndio audio], sndio, [ dnl *** hls *** translit(dnm, m, l) AM_CONDITIONAL(USE_HLS, true) AG_GST_CHECK_FEATURE(HLS, [http live streaming plugin], hls, [ - AG_GST_PKG_CHECK_MODULES(GNUTLS, gnutls, [ HAVE_HLS="yes" ], [ HAVE_HLS="no" ]) + PKG_CHECK_MODULES(GNUTLS, gnutls, [ HAVE_HLS="yes" ], [ HAVE_HLS="no" ]) ]) else