diff options
author | Avuton Olrich <avuton@gmail.com> | 2010-04-22 19:09:06 -0700 |
---|---|---|
committer | Avuton Olrich <avuton@gmail.com> | 2010-04-22 19:09:06 -0700 |
commit | 7c37f2879b695e6dcfcc6efbf4f8e83be87dc425 (patch) | |
tree | 368b92ec685fa98084e8b6d4c5c101edf53238e0 /configure.ac | |
parent | 615ccd1070def08b2e1245cc3487d0e1bb73696b (diff) | |
download | mpd-7c37f2879b695e6dcfcc6efbf4f8e83be87dc425.tar.gz mpd-7c37f2879b695e6dcfcc6efbf4f8e83be87dc425.tar.xz mpd-7c37f2879b695e6dcfcc6efbf4f8e83be87dc425.zip |
configure.ac: Move LAME encoder subheader to correct spot.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index b8c151156..45bff8948 100644 --- a/configure.ac +++ b/configure.ac @@ -1310,13 +1310,13 @@ dnl ---------------------------- Ogg Vorbis Encoder --------------------------- MPD_AUTO_PKG(vorbis_encoder, VORBISENC, [vorbisenc], [Ogg Vorbis encoder], [libvorbisenc not found]) -dnl ------------------------------- LAME Encoder ------------------------------ if test x$enable_vorbis_encoder = xyes; then AC_DEFINE(ENABLE_VORBIS_ENCODER, 1, [Define to enable the vorbis encoder plugin]) fi AM_CONDITIONAL(ENABLE_VORBIS_ENCODER, test x$enable_vorbis_encoder = xyes) +dnl ------------------------------- LAME Encoder ------------------------------ if test x$enable_lame_encoder != xno; then AC_CHECK_HEADERS(lame/lame.h,, [AC_CHECK_HEADERS(lame.h,, using_lame=no)]) |