# HG changeset patch # User tomwalters # Date 1266961978 0 # Node ID 116b5056dea5ad3a02a163d0df6b0f439b7abc97 # Parent e361baf691207c0d900617e53510728825f0ad0f -Got rid of unnecesary dependencies again diff -r e361baf69120 -r 116b5056dea5 SConstruct --- a/SConstruct Tue Feb 23 21:51:11 2010 +0000 +++ b/SConstruct Tue Feb 23 21:52:58 2010 +0000 @@ -129,7 +129,7 @@ # env.Replace(CC = ['gcc-4.0']) # env.Replace(CXX = ['gcc-4.0']) # env.AppendUnique(CPPFLAGS = ['-fno-stack-protector','-isysroot', '/Developer/SDKs/MacOSX10.5.sdk', '-mmacosx-version-min=10.4']) - +# deplibs = ['sndfile', 'flac', 'vorbis', 'vorbisenc', 'ogg'] if not target_platform == 'win32': # On windows, utf support is builtin for SimpleIni # but not on other platforms @@ -142,7 +142,7 @@ env.Append(CPPPATH = ['#src']) # Dependencies -deplibs = ['sndfile', 'flac', 'vorbis', 'vorbisenc', 'ogg'] +deplibs = ['sndfile'] for depname in deplibs: env.ParseConfig('pkg-config --cflags --libs ' + depname)