diff options
author | Avuton Olrich <avuton@gmail.com> | 2009-04-04 21:31:54 -0700 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-04-06 11:03:45 +0200 |
commit | 1acfd2423f96e3c7473131cde89933e38588d395 (patch) | |
tree | 0659cd1be612893a32ce6561cf2e0e22adb3d339 /configure.ac | |
parent | d38f72b902c205e551a92f32fd1c5a284b46a1e4 (diff) | |
download | mpd-1acfd2423f96e3c7473131cde89933e38588d395.tar.gz mpd-1acfd2423f96e3c7473131cde89933e38588d395.tar.xz mpd-1acfd2423f96e3c7473131cde89933e38588d395.zip |
configure: add shout AC_DEFINE, otherwise it will not enable.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 6389c33fc..5848942b2 100644 --- a/configure.ac +++ b/configure.ac @@ -1004,6 +1004,9 @@ if test x$enable_httpd_output = xauto; then fi AM_CONDITIONAL(HAVE_SHOUT, test x$enable_shout = xyes) +if test x$enable_shout = xyes; then + AC_DEFINE(HAVE_SHOUT, 1, [Define to enable the shoutcast output]) +fi AM_CONDITIONAL(ENABLE_HTTPD_OUTPUT, test x$enable_httpd_output = xyes) if test x$enable_httpd_output = xyes; then |