diff options
Diffstat (limited to 'm4')
-rw-r--r-- | m4/decoders.m4 | 5 | ||||
-rw-r--r-- | m4/summary.m4 | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/m4/decoders.m4 b/m4/decoders.m4 index fa008bc10..3552ba6a2 100644 --- a/m4/decoders.m4 +++ b/m4/decoders.m4 @@ -52,6 +52,11 @@ AC_DEFUN([XINE_DECODER_PLUGINS], [ [test x"$enableval" != x"no" && enable_asf="yes"]) AM_CONDITIONAL([ENABLE_ASF], [test x"$enable_asf" != x"no"]) + dnl Nosefart (optional, enabled by default) + AC_ARG_ENABLE([nosefart], + [AS_HELP_STRING([--enable-nosefart], [Enable support for nosefart player (default: enabled)])], + [test x"$enableval" != x"no" && enable_nosefart="yes"]) + AM_CONDITIONAL([ENABLE_NOSEFART], [test "x$enable_nosefart" != "xno"]) dnl FAAD (optional; enabled by default) AC_ARG_ENABLE([faad], diff --git a/m4/summary.m4 b/m4/summary.m4 index 54b8e1ca9..996374424 100644 --- a/m4/summary.m4 +++ b/m4/summary.m4 @@ -60,6 +60,7 @@ AC_DEFUN([XINE_LIB_SUMMARY], [ fi fi test x"$enable_asf" != x"no" && echo " - asf" + test x"$enable_nosefart" != xno && echo " - Nosefart (NSF)" test x"$enable_mng" != x"no" && echo " - mng" test x"$have_modplug" = x"yes" && echo " - mod" test x"$have_libflac" = x"yes" && echo " - FLAC (with libFLAC)" @@ -102,9 +103,9 @@ AC_DEFUN([XINE_LIB_SUMMARY], [ dnl audio decoders echo " * audio decoder plugins:" - echo " - GSM 06.10" - echo " - linear PCM - Nosefart (NSF)" + echo " - GSM 06.10 - linear PCM" test x"$enable_faad" != x"no" && echo " - faad" + test x"$enable_nosefart" != xno && echo " - Nosefart (NSF)" test x"$have_libflac" = x"yes" && echo " - FLAC (with libFLAC)" test x"$have_speex" = x"yes" && echo " - speex" test x"$have_vorbis" = x"yes" && echo " - vorbis" |