configure.ac: Fix a bug in the output of the configure script summary when --gst...
authorJan Schmidt <thaytan@mad.scientist.com>
Wed, 22 Oct 2008 14:25:16 +0000 (14:25 +0000)
committerJan Schmidt <thaytan@mad.scientist.com>
Wed, 22 Oct 2008 14:25:16 +0000 (14:25 +0000)
Original commit message from CVS:
* configure.ac:
Fix a bug in the output of the configure script summary
when --gst-disable-registry is supplied

ChangeLog
configure.ac

index b9252ae..ed0f9fd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2008-10-22  Jan Schmidt  <jan.schmidt@sun.com>
 
+       * configure.ac:
+       Fix a bug in the output of the configure script summary
+       when --gst-disable-registry is supplied
+
+2008-10-22  Jan Schmidt  <jan.schmidt@sun.com>
+
        * libs/gst/base/gstbitreader.c:
        * libs/gst/base/gstbytereader.c:
        Fix the names of 2 functions in the docs strings.
index 0988f6d..530be44 100644 (file)
@@ -695,6 +695,7 @@ if test "x${GST_DISABLE_OPTION_PARSING}" = "xno"; then enable_option_parsing="ye
 if test "x${GST_DISABLE_TRACE}" = "xno"; then enable_trace="yes"; fi
 if test "x${GST_DISABLE_ALLOC_TRACE}" = "xno"; then enable_alloc_trace="yes"; fi
 if test "x${GST_DISABLE_PLUGIN}" = "xno"; then enable_plugin="yes"; fi
+if test "x${GST_DISABLE_REGISTRY}" = "xno"; then enable_registry="yes"; fi
 if test "x${GST_DISABLE_NET}" = "xno"; then enable_net="yes"; fi
 
 echo "
@@ -715,7 +716,8 @@ Configuration
        Option parsing in gst_init : ${enable_option_parsing}
        Tracing subsystem          : ${enable_trace}
        Allocation tracing         : ${enable_alloc_trace}
-       Plugin registry            : ${enable_plugin}
+       Plugin registry            : ${enable_registry}
+       Plugin support             : ${enable_plugin}
        Network support            : ${enable_net}
 
        Debug                      : ${USE_DEBUG}