diff options
-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, |