diff options
author | wm4 <wm4@nowhere> | 2014-01-05 23:27:14 +0100 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2014-01-05 23:27:14 +0100 |
commit | 917374a7bfaa90233c239aca18968e6454fc8bc2 (patch) | |
tree | d1dd749e10507a3cd523a366d7f511ee15ec946f /wscript | |
parent | 7c425fb71f89fca945363fb49007a5a70e824016 (diff) |
build: don't depend on both libavresample and libswresample
When both libavresample and libswresample were detected, the script
enabled both at the same time. This is not supported; although nothing
bad happened apparently. Make the dependencies both mutually exclusive.
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -335,6 +335,7 @@ Libav libraries ({0}). Aborting.".format(" ".join(libav_pkg_config_checks)) 'name': '--libswresample', 'desc': 'libswresample', 'func': check_pkg_config('libswresample', '>= 0.17.102'), + 'deps_neg': ['libavresample'], }, { 'name': 'resampler', 'desc': 'usable resampler found', |