diff options
| author | Carl Hetherington <cth@carlh.net> | 2012-12-18 21:14:03 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2012-12-18 21:14:03 +0000 |
| commit | 513ee257dfcac679b346a872e4446ab2ef453f67 (patch) | |
| tree | 985cfa26fc09353e6e98ef39849b8fa26004ffb7 /wscript | |
| parent | 83cd070ba0a4848dd3d8f69547556c375b326f80 (diff) | |
| parent | 961423c88b89bd845bee157797114cdb5ce86a9e (diff) | |
Merge branch 'master' of ssh://houllier/home/carl/git/dvdomatic
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -61,7 +61,7 @@ def configure(conf): conf.check_cfg(package = 'libpostproc', args = '--cflags --libs', uselib_store = 'POSTPROC', mandatory = True) else: # This is hackio grotesquio for static builds (ie for .deb packages). We need to link some things - # statically and some dynamically, or things get horribly confused the dynamic linker (I think) + # statically and some dynamically, or things get horribly confused and the dynamic linker (I think) # crashes horribly. These calls do what the check_cfg calls would have done, but specify the # different bits as static or dynamic as required. It'll break if you look at it funny, but # I think anyone else who builds would do so dynamically. @@ -84,6 +84,10 @@ def configure(conf): conf.env.HAVE_POSTPROC = 1 conf.env.STLIB_POSTPROC = ['postproc'] + # This doesn't seem to be set up, and we need it otherwise resampling support + # won't be included. Hack upon a hack, obviously + conf.env.append_value('CXXFLAGS', ['-DHAVE_SWRESAMPLE=1']) + conf.check_cfg(package = 'sndfile', args = '--cflags --libs', uselib_store = 'SNDFILE', mandatory = True) conf.check_cfg(package = 'glib-2.0', args = '--cflags --libs', uselib_store = 'GLIB', mandatory = True) conf.check_cfg(package = '', path = 'Magick++-config', args = '--cppflags --cxxflags --libs', uselib_store = 'MAGICK', mandatory = True) |
