configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by default. Also because...
authorAndy Wingo <wingo@pobox.com>
Mon, 18 Jul 2005 15:01:16 +0000 (15:01 +0000)
committerAndy Wingo <wingo@pobox.com>
Mon, 18 Jul 2005 15:01:16 +0000 (15:01 +0000)
Original commit message from CVS:
2005-07-18  Andy Wingo  <wingo@pobox.com>

* configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
default. Also because it's the only thing that really works. (This
is used in the GConf elements).
Use AS_LIBTOOL_TAGS.

ChangeLog
common
configure.ac

index 95e8901..6bb8f3d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-07-18  Andy Wingo  <wingo@pobox.com>
+
+       * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
+       default. Also because it's the only thing that really works. (This
+       is used in the GConf elements).
+       Use AS_LIBTOOL_TAGS.
+
 2005-07-18  Wim Taymans  <wim@fluendo.com>
 
        * gst/playback/gstdecodebin.c: (remove_element_chain):
        (buffer_frames_convert_link):
          Don't leak othercaps. (fixes #167878)
 
-2005-02-19  Arwed v. Merkatz  <v.merkatz@gmx.net>>
+2005-02-19  Arwed v. Merkatz  <v.merkatz@gmx.net>
 
        * configure.ac:
        * ext/libvisual/visual.c: (gst_visual_srclink),
diff --git a/common b/common
index ac7272b..6f9b691 160000 (submodule)
--- a/common
+++ b/common
@@ -1 +1 @@
-Subproject commit ac7272b7af934c2294a44ac1c0f3fac3f8d17ec6
+Subproject commit 6f9b691adc2a0300598311671dd7c4d9d2035afa
index 58a7b1d..43d84d3 100644 (file)
@@ -29,6 +29,7 @@ dnl - interfaces added -> increment AGE
 dnl - interfaces removed -> AGE = 0
 dnl for 0.8.3 release, gst_play_get_all_by_interface was added, so update
 AS_LIBTOOL(GST_PLUGINS, 1, 0, 1)
+AS_LIBTOOL_TAGS([])
 AM_PROG_LIBTOOL
 
 dnl FIXME take something else ?
@@ -91,9 +92,9 @@ fi
 dnl Check for FIONREAD ioctl declaration :
 GST_CHECK_FIONREAD()
 
-DEFAULT_AUDIOSINK="osssink"
+DEFAULT_AUDIOSINK="alsasink"
 DEFAULT_VIDEOSINK="xvimagesink"
-DEFAULT_AUDIOSRC="osssrc"
+DEFAULT_AUDIOSRC="alsasrc"
 DEFAULT_VIDEOSRC="v4lsrc"
 DEFAULT_VISUALIZER="goom"
 case "$host" in 
@@ -942,10 +943,13 @@ m4/Makefile
 )
 AC_OUTPUT
 
-echo -n "configure: *** Plug-ins that will be built:"
+echo -n "configure: *** Core plug-ins, always built:"
+( for i in $GST_PLUGINS_ALL; do echo $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