# HG changeset patch # User Andrew O. Shadoura # Date 1213330979 -10800 # Node ID 28d9a2148cad87b74ef67e39ecfc4c185b71e84c # Parent 3656fbfc63b6a40f880b1f0109456012bed7ed63 fixed plugins build order: filewriter needs to be built before icecast diff -r 3656fbfc63b6 -r 28d9a2148cad configure.ac --- a/configure.ac Fri Jun 13 06:19:07 2008 +0300 +++ b/configure.ac Fri Jun 13 07:22:59 2008 +0300 @@ -306,8 +306,7 @@ if test "x$enable_icecast" = "xyes"; then PKG_CHECK_MODULES(SHOUT, [shout >= 2.0], [have_shout=yes - enable_filewriter=yes - OUTPUT_PLUGINS="$OUTPUT_PLUGINS icecast"], + enable_filewriter=yes], [have_shout=no] ) else @@ -1591,6 +1590,10 @@ AC_SUBST(FILEWRITER_CFLAGS) AC_SUBST(FILEWRITER_LIBS) +if test "x$have_shout" = "xyes"; then + OUTPUT_PLUGINS="$OUTPUT_PLUGINS icecast" +fi + dnl *** End of all plugin checks *** AC_SUBST(ARCH_DEFINES) @@ -1730,7 +1733,7 @@ echo " LIRC: $have_lirc" echo " AudioScrobbler Client: $scrobbler" echo " Upload to MTP device: $have_mtp_up" -echo " Bluetooth audio suport: $have_bluetooth" +echo " Bluetooth audio support: $have_bluetooth" echo " MacOS Dock Album Art plugin: $have_dockalbumart" echo echo " Effect" diff -r 3656fbfc63b6 -r 28d9a2148cad src/icecast/Makefile --- a/src/icecast/Makefile Fri Jun 13 06:19:07 2008 +0300 +++ b/src/icecast/Makefile Fri Jun 13 07:22:59 2008 +0300 @@ -1,7 +1,7 @@ PLUGIN = icecast${PLUGIN_SUFFIX} -SRCS = icecast.c \ - ../filewriter/mp3.o \ +SRCS = icecast.c \ + ../filewriter/mp3.o \ ../filewriter/vorbis.o include ../../buildsys.mk