Commit 9c83464b authored by Max Kellermann's avatar Max Kellermann

configure.ac: auto-detect libfluidsynth

Now that the libfluidsynth API was sanitized, we can enable the plugin automatically if libfluidsynth is installed.
parent b1bbd70f
...@@ -103,7 +103,7 @@ libsidplay2 - http://sidplay2.sourceforge.net/ ...@@ -103,7 +103,7 @@ libsidplay2 - http://sidplay2.sourceforge.net/
For C64 SID support. For C64 SID support.
libfluidsynth - http://fluidsynth.resonance.org/ libfluidsynth - http://fluidsynth.resonance.org/
For MIDI support (DO NOT USE - use libwildmidi instead) For MIDI support.
libwildmidi - http://wildmidi.sourceforge.net/ libwildmidi - http://wildmidi.sourceforge.net/
For MIDI support. For MIDI support.
......
...@@ -217,8 +217,8 @@ AC_ARG_ENABLE(flac, ...@@ -217,8 +217,8 @@ AC_ARG_ENABLE(flac,
AC_ARG_ENABLE(fluidsynth, AC_ARG_ENABLE(fluidsynth,
AS_HELP_STRING([--enable-fluidsynth], AS_HELP_STRING([--enable-fluidsynth],
[enable MIDI support via fluidsynth (default: disable)]),, [enable MIDI support via fluidsynth (default: auto)]),,
enable_fluidsynth=no) enable_fluidsynth=auto)
AC_ARG_ENABLE(gme, AC_ARG_ENABLE(gme,
AS_HELP_STRING([--enable-gme], AS_HELP_STRING([--enable-gme],
......
...@@ -17,15 +17,6 @@ ...@@ -17,15 +17,6 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/ */
/*
* WARNING! This plugin suffers from major shortcomings in the
* libfluidsynth API, which render it practically unusable. For a
* discussion, see the post on the fluidsynth mailing list:
*
* http://www.mail-archive.com/fluid-dev@nongnu.org/msg01099.html
*
*/
#include "config.h" #include "config.h"
#include "decoder_api.h" #include "decoder_api.h"
#include "conf.h" #include "conf.h"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment