summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-09-30 14:56:35 +0100
committerCarl Hetherington <cth@carlh.net>2015-09-30 14:56:35 +0100
commitd2ca18d5b2a3351745cc8be2840308808e5a2d36 (patch)
tree73dfb23d9899eb7708fad1215cad93f0aea9ca02 /wscript
parentb81ca5ddf8b6e5a62c56b6b22b1fe1a16b862a6a (diff)
Remove references to libswresample.
Diffstat (limited to 'wscript')
-rw-r--r--wscript3
1 files changed, 1 insertions, 2 deletions
diff --git a/wscript b/wscript
index a30da5e40..93a5d1e91 100644
--- a/wscript
+++ b/wscript
@@ -279,7 +279,7 @@ def configure(conf):
# FFmpeg
if conf.options.static_ffmpeg:
- names = ['avformat', 'avfilter', 'avcodec', 'avutil', 'swscale', 'swresample', 'postproc']
+ names = ['avformat', 'avfilter', 'avcodec', 'avutil', 'swscale', 'postproc']
for name in names:
static = subprocess.Popen(shlex.split('pkg-config --static --libs lib%s' % name), stdout=subprocess.PIPE).communicate()[0]
libs = []
@@ -307,7 +307,6 @@ def configure(conf):
conf.check_cfg(package='libavcodec', args='--cflags --libs', uselib_store='AVCODEC', mandatory=True)
conf.check_cfg(package='libavutil', args='--cflags --libs', uselib_store='AVUTIL', mandatory=True)
conf.check_cfg(package='libswscale', args='--cflags --libs', uselib_store='SWSCALE', mandatory=True)
- conf.check_cfg(package='libswresample', args='--cflags --libs', uselib_store='SWRESAMPLE', mandatory=True)
conf.check_cfg(package='libpostproc', args='--cflags --libs', uselib_store='POSTPROC', mandatory=True)
# Boost