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

wjpalenstijn at users.sourceforge.net wjpalenstijn at users.sourceforge.net
Fri Sep 17 16:25:31 CEST 2010


Revision: 52763
          http://scummvm.svn.sourceforge.net/scummvm/?rev=52763&view=rev
Author:   wjpalenstijn
Date:     2010-09-17 14:25:31 +0000 (Fri, 17 Sep 2010)

Log Message:
-----------
TOOLS: Check for flac >= 1.1.3

Specifically, check for the FLAC__StreamEncoderInitStatus type
which was introduced in flac-1.1.3 and used in our tools.

Modified Paths:
--------------
    tools/trunk/configure

Modified: tools/trunk/configure
===================================================================
--- tools/trunk/configure	2010-09-17 13:44:32 UTC (rev 52762)
+++ tools/trunk/configure	2010-09-17 14:25:31 UTC (rev 52763)
@@ -862,11 +862,13 @@
 #
 # Check for FLAC
 #
-echocheck "FLAC >= 1.0.1"
+echocheck "FLAC >= 1.1.3"
 if test "$_flac" = auto ; then
 	_flac=no
 	cat > $TMPC << EOF
 #include <FLAC/format.h>
+#include <FLAC/stream_encoder.h>
+FLAC__StreamEncoderInitStatus x;
 int main(void) { return FLAC__STREAM_SYNC_LEN >> 30; /* guaranteed to be 0 */ }
 EOF
 	if test "$_vorbis" = yes ; then


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