[Scummvm-cvs-logs] SF.net SVN: scummvm:[40016] scummvm/branches/branch-0-13-0/configure

Kirben at users.sourceforge.net Kirben at users.sourceforge.net
Sun Apr 19 12:17:29 CEST 2009


Revision: 40016
          http://scummvm.svn.sourceforge.net/scummvm/?rev=40016&view=rev
Author:   Kirben
Date:     2009-04-19 10:17:29 +0000 (Sun, 19 Apr 2009)

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

Modified Paths:
--------------
    scummvm/branches/branch-0-13-0/configure

Modified: scummvm/branches/branch-0-13-0/configure
===================================================================
--- scummvm/branches/branch-0-13-0/configure	2009-04-19 01:28:27 UTC (rev 40015)
+++ scummvm/branches/branch-0-13-0/configure	2009-04-19 10:17:29 UTC (rev 40016)
@@ -1611,7 +1611,14 @@
 fi
 if test "$_fluidsynth" = yes ; then
 	_def_fluidsynth='#define USE_FLUIDSYNTH'
-	LIBS="$LIBS $FLUIDSYNTH_LIBS -lfluidsynth"
+	case $_host_os in
+		mingw*)
+			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