diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-03-05 10:11:59 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-03-28 19:47:28 +0100 |
| commit | d9e3a57957c0c52e7227553f03818aab376be384 (patch) | |
| tree | f1d91d85da79c7cbc1b40b167ef4b3a099dd3f31 /cscript | |
| parent | df6dffa237b8dc9c1fdd28f3995040cbcc15703f (diff) | |
Force C++11 for the libdcp and libsub builds.
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,6 +1,6 @@ # -*- mode: python -*- # -# Copyright (C) 2012-2019 Carl Hetherington <cth@carlh.net> +# Copyright (C) 2012-2020 Carl Hetherington <cth@carlh.net> # # This file is part of DCP-o-matic. # @@ -362,8 +362,8 @@ def dependencies(target): # Use distro-provided FFmpeg on Arch deps = [] - deps.append(('libdcp', None)) - deps.append(('libsub', None)) + deps.append(('libdcp', None, {'force-cpp11': True})) + deps.append(('libsub', None, {'force-cpp11': True})) deps.append(('rtaudio', 'carl')) # We get our OpenSSL libraries from the environment, but we # also need a patched openssl binary to make certificates. |
