diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-05 20:37:47 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-06-05 20:37:47 +0200 |
commit | f29569da381605fa75dd7dfc780de0c8a2c44740 (patch) | |
tree | be256d234e8a276a1bf8dfe6654ee2a031fa760c | |
parent | 3027b1d5c75d20c38af0d7df33a0d3cd514f93dc (diff) | |
download | xine-lib-f29569da381605fa75dd7dfc780de0c8a2c44740.tar.gz xine-lib-f29569da381605fa75dd7dfc780de0c8a2c44740.tar.bz2 |
Disable aRTs output plugin by default, it's deprecated and will be removed in 1.2 series.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -25,6 +25,8 @@ xine-lib (1.1.7) (unreleased) streams as PES streams. * Handle unplugged ALSA device (fixes crashes) and if the frontend does not handle the event continue playback to the none output. + * Disable aRTs output plugin by default, it's deprecated and will be removed + in 1.2 series. xine-lib (1.1.6) * Split the DirectFB plugin into X11 and non-X versions. diff --git a/configure.ac b/configure.ac index a80f12aab..c57677b72 100644 --- a/configure.ac +++ b/configure.ac @@ -1488,8 +1488,8 @@ dnl ARTS support dnl --------------------------------------------- AC_ARG_WITH([arts], - AS_HELP_STRING([--without-arts], [Build without ARTS audio output]), - [with_arts=$withval], [with_arts=yes]) + AS_HELP_STRING([--with-arts], [Build with ARTS audio output]), + [with_arts=$withval], [with_arts=no]) if test "x$with_arts" = "xyes"; then AM_PATH_ARTS(0.9.5, |