summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Schaller <uraeus@gnome.org>2005-10-24 13:02:47 +0000
committerChristian Schaller <uraeus@gnome.org>2005-10-24 13:02:47 +0000
commit79240332d1d2f8163fed5f289a2ff28180247e0f (patch)
tree64a3e3f476404922f2e5ed8557356cdda92cf176
parent1ad173939457251ef0f2ac1ba28b077206eb6448 (diff)
port over plugin listing from base
Original commit message from CVS: port over plugin listing from base
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac7
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 6bc79414..0e154b41 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2005-10-24 Christian Schaller <christian@fluendo.com>
+
+ * configure.ac: Port over Thomas's change from base listing all plugins
+
2005-10-24 Julien MOUTTE <julien@moutte.net>
* ext/libpng/gstpngdec.c: (gst_pngdec_init): Don't use fixed caps on
diff --git a/configure.ac b/configure.ac
index 13f434b5..2486e4a8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -637,10 +637,13 @@ gst-plugins-good.spec
)
AC_OUTPUT
-echo -n "configure: *** Plug-ins that will be built :"
+echo "configure: *** Core plug-ins, always built:"
+( for i in $GST_PLUGINS_ALL; do echo -e '\t'$i; done ) | sort
+echo
+echo -n "configure: *** Plug-ins relying on libraries that will be built:"
echo -e "$GST_PLUGINS_YES" | sort
echo
-echo -n "configure: *** Plug-ins that will not be built :"
+echo -n "configure: *** Plug-ins relying on libraries that will NOT be built:"
echo -e "$GST_PLUGINS_NO" | sort
echo
if test "x$BUILD_EXTERNAL" = "xno"; then