From f6e5c00726cf3322813242b804f3bf2369cfa337 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 22 Feb 2009 17:18:28 +0100 Subject: shout: use the new encoder API Removed shout's encoder plugin API in favor of the new generic encoder plugin API. --- configure.ac | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 572917cd2..8c1e1d2ca 100644 --- a/configure.ac +++ b/configure.ac @@ -557,8 +557,7 @@ if test x$enable_shout_ogg = xyes; then enable_shout_ogg=no fi if test x$enable_shout_ogg = xyes; then - PKG_CHECK_MODULES(VORBISENC, [vorbisenc], - AC_DEFINE(HAVE_SHOUT_OGG, 1, [Define to enable ogg streaming support]), + PKG_CHECK_MODULES(VORBISENC, [vorbisenc],, enable_shout_ogg=no) fi fi @@ -573,9 +572,6 @@ if test x$enable_shout_mp3 = xyes; then AC_MSG_WARN([disabling mp3 shout streaming support because lame is not enabled]) enable_shout_mp3=no fi - if test x$enable_shout_mp3 = xyes; then - AC_DEFINE(HAVE_SHOUT_MP3, 1, [Define to enable mp3 streaming support]) - fi fi if test x$enable_shout_ogg = xyes || test x$enable_shout_mp3 = xyes; then @@ -586,8 +582,6 @@ else fi AM_CONDITIONAL(HAVE_SHOUT, test x$enable_shout = xyes) -AM_CONDITIONAL(HAVE_SHOUT_OGG, test x$enable_shout_ogg = xyes) -AM_CONDITIONAL(HAVE_SHOUT_MP3, test x$enable_shout_mp3 = xyes) AM_CONDITIONAL(ENABLE_ENCODER, test x$enable_shout = xyes) AM_CONDITIONAL(ENABLE_VORBIS_ENCODER, test x$enable_shout_ogg = xyes) -- cgit v1.2.3