diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-05-31 18:29:00 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2007-05-31 18:29:00 +0200 |
commit | a8bb7140826c99ee2448695058146ec265b6e4e6 (patch) | |
tree | 84c514d4da77eb5f02b5959ccbd76a407900ad70 /m4 | |
parent | 99a966ff01671a2724359c79fab7b3c7fb394d3a (diff) | |
download | xine-lib-a8bb7140826c99ee2448695058146ec265b6e4e6.tar.gz xine-lib-a8bb7140826c99ee2448695058146ec265b6e4e6.tar.bz2 |
Move modplug demuxing on its own plugin.
This way binary distributions can make it optional, as it requires quite a bit of CPU time during initialisation, even for audio files that nothing have to do with modplug.
Diffstat (limited to 'm4')
-rw-r--r-- | m4/decoders.m4 | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/m4/decoders.m4 b/m4/decoders.m4 index 58d1c56e5..094f406ea 100644 --- a/m4/decoders.m4 +++ b/m4/decoders.m4 @@ -273,8 +273,6 @@ use internal ffmpeg. PKG_CHECK_MODULES([LIBMODPLUG], [libmodplug >= 0.7], [have_modplug=yes], [have_modplug=no]) if test x"$enable_modplug" = x"yes" && test x"$have_modplug" != x"yes"; then AC_MSG_ERROR([MODPlug support requested, but MODPlug not found]) - elif test x"$have_modplug" = x"yes"; then - AC_DEFINE([HAVE_MODPLUG], 1, [define this if you have libmodplug installed]) fi fi AM_CONDITIONAL([ENABLE_MODPLUG], [test x"$have_modplug" = x"yes"]) |