[Scummvm-cvs-logs] SF.net SVN: scummvm:[39749] scummvm/trunk/configure

Kirben at users.sourceforge.net Kirben at users.sourceforge.net
Mon Mar 30 05:44:26 CEST 2009


Revision: 39749
          http://scummvm.svn.sourceforge.net/scummvm/?rev=39749&view=rev
Author:   Kirben
Date:     2009-03-30 03:44:26 +0000 (Mon, 30 Mar 2009)

Log Message:
-----------
Fluidsynth requires additional libraries, for mingw build.

Modified Paths:
--------------
    scummvm/trunk/configure

Modified: scummvm/trunk/configure
===================================================================
--- scummvm/trunk/configure	2009-03-29 21:47:09 UTC (rev 39748)
+++ scummvm/trunk/configure	2009-03-30 03:44:26 UTC (rev 39749)
@@ -1731,7 +1731,14 @@
 fi
 if test "$_fluidsynth" = yes ; then
 	_def_fluidsynth='#define USE_FLUIDSYNTH'
-	LIBS="$LIBS $FLUIDSYNTH_LIBS -lfluidsynth"
+	case $_host_os in
+		mingw* | cygwin*)
+			LIBS="$LIBS $FLUIDSYNTH_LIBS -lfluidsynth -ldsound -lwinmm"
+		;;
+		*)
+		LIBS="$LIBS $FLUIDSYNTH_LIBS -lfluidsynth"
+		;;
+	esac
 	INCLUDES="$INCLUDES $FLUIDSYNTH_CFLAGS"
 else
 	_def_fluidsynth='#undef USE_FLUIDSYNTH'


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list