From 0ae8df431212bc90985fdf1b50745b68c53df5a6 Mon Sep 17 00:00:00 2001 From: Thiago Santos Date: Tue, 30 Nov 2010 11:40:18 -0300 Subject: [PATCH] camerabin2: Keep it under --enable-experimental camerabin2 is still under heavy development, activate it only if the --enable-experimental flag is on. Also add a note to the docs. --- configure.ac | 5 +++-- gst/camerabin2/gstcamerabin2.c | 7 +++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index c8aab6f994..3beb627c47 100644 --- a/configure.ac +++ b/configure.ac @@ -358,8 +358,9 @@ if test "x$HAVE_CPU_I386" != "xyes" && test "x$HAVE_CPU_X86_64" != "xyes"; then fi dnl disable experimental plug-ins -dnl if test "x$BUILD_EXPERIMENTAL" != "xyes"; then -dnl fi +if test "x$BUILD_EXPERIMENTAL" != "xyes"; then + AG_GST_DISABLE_PLUGIN(camerabin2) +fi # This will always succeed because we depend on GLib >= 2.16 PKG_CHECK_MODULES(GIO, gio-2.0 >= 2.16, HAVE_GIO=yes, HAVE_GIO=no) diff --git a/gst/camerabin2/gstcamerabin2.c b/gst/camerabin2/gstcamerabin2.c index 9029b5d722..c967a1c45e 100644 --- a/gst/camerabin2/gstcamerabin2.c +++ b/gst/camerabin2/gstcamerabin2.c @@ -17,9 +17,12 @@ * Boston, MA 02111-1307, USA. */ /** - * SECTION:element-gstcamerabin + * SECTION:element-gstcamerabin2 * - * The gstcamerabin element does FIXME stuff. + * The gstcamerabin2 element does FIXME stuff. + * + * Note that camerabin2 is still UNSTABLE, EXPERIMENTAL and under heavy + * development. */ #ifdef HAVE_CONFIG_H