diff options
author | Arun Raghavan <arun.raghavan@collabora.co.uk> | 2010-06-24 18:16:57 +0530 |
---|---|---|
committer | Arun Raghavan <arun.raghavan@collabora.co.uk> | 2010-06-24 18:16:57 +0530 |
commit | 9f442945c3c0fc3d6f01788deae9c6f248c01d9e (patch) | |
tree | 8cf13e68880f2a7f7503089279c94276c47b879a | |
parent | 4872007d251da8d5a11c6021388feff4401ca08c (diff) | |
download | gupnp-dlna-9f442945c3c0fc3d6f01788deae9c6f248c01d9e.tar.gz |
build: Get rid of gst-convenience warning
Suppress the unstable API warning so we don't miss other warnings.
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 9aedc16..b695cf6 100644 --- a/configure.ac +++ b/configure.ac @@ -23,6 +23,9 @@ PKG_CHECK_MODULES(GST_BASE, gstreamer-base-$GST_MAJORMINOR >= $GST_REQ) PKG_CHECK_MODULES(GST_VIDEO, gstreamer-video-$GST_MAJORMINOR >= $GSTVID_REQ) AC_SUBST(GST_MAJORMINOR) +GST_CFLAGS="$GST_CFLAGS -DGST_USE_UNSTABLE_API" +AC_SUBST(GST_CFLAGS) + # glib-genmarshal GLIB_GENMARSHAL=`pkg-config --variable=glib_genmarshal glib-2.0` AC_SUBST(GLIB_GENMARSHAL) |