maybe fix flac stuff

git-svn-id: svn://localhost/ardour2/trunk@1944 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2007-06-02 00:35:09 +00:00
parent b32765571b
commit 7bfe236ba7
2 changed files with 7 additions and 3 deletions

View file

@ -6,9 +6,10 @@ import glob
sndfile_files = glob.glob('src/*.c') + glob.glob('src/GSM610/*.c') + glob.glob('src/G72x/*.c')
Import('env install_prefix libraries')
Import('env install_prefix libraries use_flac')
sndfile = env.Copy()
sndfile.Merge([libraries['flac'] ])
if use_flac:
sndfile.Merge([libraries['flac'] ])
domain = 'libsndfile'