configure: Always run pkg-config for shout, define AC_DEFINE if enabled

[mk: don't run pkg-config when shout is disabled]
This commit is contained in:
Avuton Olrich 2009-03-16 08:44:41 +01:00 committed by Max Kellermann
parent 04b092bbfe
commit f1fb4e99a6

View File

@ -593,10 +593,10 @@ AC_ARG_ENABLE(shout,
[enables the shoutcast streaming output (default: disable)]),,
[enable_shout=no])
if test x$enable_oggvorbis_encoder = xyes || test x$enable_lame_encoder = xyes; then
PKG_CHECK_MODULES([SHOUT], [shout],,
[enable_oggvorbis_encoder=no; enable_lame_encoder=no;
AC_MSG_WARN([disabling shout streaming support because libshout is not available])])
if test x$enable_shout = xyes; then
PKG_CHECK_MODULES([SHOUT], [shout],
AC_DEFINE(HAVE_SHOUT, 1, [Define to enable libshout support]),
enable_shout=no)
fi
if test x$enable_oggvorbis_encoder = xyes; then
@ -628,13 +628,6 @@ if test x$enable_lame_encoder = xyes; then
fi
fi
if test x$enable_oggvorbis_encoder = xyes || test x$enable_lame_encoder = xyes; then
enable_shout=yes
AC_DEFINE(HAVE_SHOUT, 1, [Define to enable libshout support])
else
enable_shout=no
fi
AM_CONDITIONAL(HAVE_SHOUT, test x$enable_shout = xyes)
AM_CONDITIONAL(ENABLE_ENCODER, test x$enable_shout = xyes || test x$enable_httpd_output = xyes)