summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorDoug McLain <doug@nostar.net>2007-06-25 18:29:44 +0000
committerDoug McLain <doug@nostar.net>2007-06-25 18:29:44 +0000
commitfde8d11d9da56d32c7fbd2388cbe8938fea30814 (patch)
tree6b2850dc542565b4218960566be2a1e543d7bf69 /SConstruct
parent6e872325569977321afec019677f363143bcd62a (diff)
use different symbol for flac version check, the other one wasn't working correctly
git-svn-id: svn://localhost/ardour2/trunk@2031 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index 0e7c571b79..34a7071a66 100644
--- a/SConstruct
+++ b/SConstruct
@@ -743,7 +743,7 @@ libraries['flac'].Append(CCFLAGS="-I/usr/local/include", LINKFLAGS="-L/usr/local
#
conf = Configure (libraries['flac'])
-if conf.CheckLib ('FLAC', 'FLAC__seekable_stream_decoder_set_read_callback', language='CXX'):
+if conf.CheckLib ('FLAC', 'FLAC__seekable_stream_decoder_init', language='CXX'):
conf.env.Append(CCFLAGS='-DHAVE_FLAC')
use_flac = False
else: