diff options
author | Avuton Olrich <avuton@gmail.com> | 2010-04-17 04:16:35 -0700 |
---|---|---|
committer | Avuton Olrich <avuton@gmail.com> | 2010-04-21 07:35:32 -0700 |
commit | b6a33691ff7a42e00d548de50a9e965d57987e18 (patch) | |
tree | 70f73dc25fd1bdbd85bf12d24e9ecf57d86c6fa4 /configure.ac | |
parent | 5e616b4ff3a0a1de922e0d9fcfb7cb728568c49b (diff) | |
download | mpd-b6a33691ff7a42e00d548de50a9e965d57987e18.tar.gz mpd-b6a33691ff7a42e00d548de50a9e965d57987e18.tar.xz mpd-b6a33691ff7a42e00d548de50a9e965d57987e18.zip |
configure.ac: Move TwoLAME Encoder to Encoder Plugins.
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/configure.ac b/configure.ac index 6b742aae2..3aebbfad6 100644 --- a/configure.ac +++ b/configure.ac @@ -1248,9 +1248,16 @@ if test x$enable_lame_encoder = xyes; then fi AM_CONDITIONAL(ENABLE_LAME_ENCODER, test x$enable_lame_encoder = xyes) +dnl ----------------------------- TwoLAME Encoder ----------------------------- MPD_AUTO_PKG(twolame_encoder, TWOLAME, [twolame], [TwoLAME encoder], [libtwolame not found]) +if test x$enable_twolame_encoder = xyes; then + AC_DEFINE(ENABLE_TWOLAME_ENCODER, 1, + [Define to enable the TwoLAME encoder plugin]) +fi +AM_CONDITIONAL(ENABLE_TWOLAME_ENCODER, test x$enable_twolame_encoder = xyes) + if test x$enable_vorbis_encoder != xno || test x$enable_lame_encoder != xno || test x$enable_twolame_encoder != xno || @@ -1322,13 +1329,6 @@ if test x$enable_encoder = xyes; then [Define to enable the encoder plugins]) fi - -AM_CONDITIONAL(ENABLE_TWOLAME_ENCODER, test x$enable_twolame_encoder = xyes) -if test x$enable_twolame_encoder = xyes; then - AC_DEFINE(ENABLE_TWOLAME_ENCODER, 1, - [Define to enable the TwoLAME encoder plugin]) -fi - AM_CONDITIONAL(ENABLE_WAVE_ENCODER, test x$enable_wave_encoder = xyes) if test x$enable_wave_encoder = xyes; then AC_DEFINE(ENABLE_WAVE_ENCODER, 1, |