diff options
author | Max Kellermann <max@duempel.org> | 2009-02-12 16:43:18 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-12 16:43:18 +0100 |
commit | 149233946329ae050142e3fe1b9656d7cd9dd1dc (patch) | |
tree | 2a363f9e583b2e3355635a0b379eff89d669779c /configure.ac | |
parent | e56a90f3b343217671327aba2ecdca8709463331 (diff) | |
download | mpd-149233946329ae050142e3fe1b9656d7cd9dd1dc.tar.gz mpd-149233946329ae050142e3fe1b9656d7cd9dd1dc.tar.xz mpd-149233946329ae050142e3fe1b9656d7cd9dd1dc.zip |
wildmidi: new decoder plugin for MIDI files
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 84ffce570..67e2cb1f6 100644 --- a/configure.ac +++ b/configure.ac @@ -422,6 +422,11 @@ AC_ARG_ENABLE(fluidsynth, [enable MIDI support via fluidsynth (default: disable)]),, enable_fluidsynth=no) +AC_ARG_ENABLE(wildmidi, + AS_HELP_STRING([--enable-wildmidi], + [enable MIDI support via wildmidi (default: disable)]),, + enable_wildmidi=no) + AC_ARG_ENABLE(wavpack, AS_HELP_STRING([--disable-wavpack], [disable WavPack support (default: enable)]), @@ -1038,6 +1043,26 @@ fi AM_CONDITIONAL(ENABLE_FLUIDSYNTH, test x$enable_fluidsynth = xyes) +if test x$enable_wildmidi = xyes; then + oldcflags=$CFLAGS + oldlibs=$LIBS + oldcppflags=$CPPFLAGS + + AC_CHECK_LIB(WildMidi, WildMidi_Init,, + AC_MSG_ERROR([libwildmidi not found])) + + CFLAGS=$oldcflags + LIBS=$oldlibs + CPPFLAGS=$oldcppflags + + AC_SUBST(WILDMIDI_LIBS,-lWildMidi) + AC_SUBST(WILDMIDI_CFLAGS,) + + AC_DEFINE(ENABLE_WILDMIDI, 1, [Define for wildmidi support]) +fi + +AM_CONDITIONAL(ENABLE_WILDMIDI, test x$enable_wildmidi = xyes) + dnl dnl Documentation @@ -1329,6 +1354,12 @@ else echo " fluidsynth MIDI support .......disabled" fi +if test x$enable_wildmidi = xyes; then + echo " wildmidi MIDI support .........enabled" +else + echo " wildmidi MIDI support .........disabled" +fi + if test x$enable_ffmpeg = xyes; then echo " FFMPEG support ................enabled" else @@ -1348,6 +1379,7 @@ if test x$enable_modplug = xno && test x$enable_sidplay = xno && test x$enable_fluidsynth = xno && + test x$enable_wildmidi = xno && test x$enable_mod = xno; then AC_MSG_ERROR([No input plugins supported!]) fi |