diff options
author | Max Kellermann <max@duempel.org> | 2009-02-24 10:00:21 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-24 10:00:21 +0100 |
commit | d89ba3bcce6e5eab1e64442db87371434934b8e7 (patch) | |
tree | 25d534f789c4f619227bdfc7fab9117c2f38c9d8 | |
parent | 39a33344f2c071f0fe4e60fd0e425b3d51dcf16c (diff) | |
download | mpd-d89ba3bcce6e5eab1e64442db87371434934b8e7.tar.gz mpd-d89ba3bcce6e5eab1e64442db87371434934b8e7.tar.xz mpd-d89ba3bcce6e5eab1e64442db87371434934b8e7.zip |
configure.ac: fix comma errors
Removed superfluous commas.
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 349f110f2..ddebb0bdc 100644 --- a/configure.ac +++ b/configure.ac @@ -586,11 +586,11 @@ AM_CONDITIONAL(HAVE_SHOUT, test x$enable_shout = xyes) AM_CONDITIONAL(ENABLE_ENCODER, test x$enable_shout = xyes) AM_CONDITIONAL(ENABLE_VORBIS_ENCODER, test x$enable_shout_ogg = xyes) if test x$enable_shout_ogg = xyes; then - AC_DEFINE(ENABLE_VORBIS_ENCODER, 1, [Define to enable the vorbis encoder plugin]), + AC_DEFINE(ENABLE_VORBIS_ENCODER, 1, [Define to enable the vorbis encoder plugin]) fi AM_CONDITIONAL(ENABLE_LAME_ENCODER, test x$enable_shout_mp3 = xyes) if test x$enable_shout_mp3 = xyes; then - AC_DEFINE(ENABLE_LAME_ENCODER, 1, [Define to enable the lame encoder plugin]), + AC_DEFINE(ENABLE_LAME_ENCODER, 1, [Define to enable the lame encoder plugin]) fi if test x$enable_ao = xyes; then |