summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-03-05 10:11:59 +0100
committerCarl Hetherington <cth@carlh.net>2020-03-28 19:47:28 +0100
commitd9e3a57957c0c52e7227553f03818aab376be384 (patch)
treef1d91d85da79c7cbc1b40b167ef4b3a099dd3f31 /cscript
parentdf6dffa237b8dc9c1fdd28f3995040cbcc15703f (diff)
Force C++11 for the libdcp and libsub builds.
Diffstat (limited to 'cscript')
-rw-r--r--cscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/cscript b/cscript
index 0a0a73c88..e548df08c 100644
--- a/cscript
+++ b/cscript
@@ -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.