# Use distro-provided FFmpeg on Arch
deps = []
- deps.append(('libdcp', 'v1.8.108'))
+ deps.append(('libdcp', 'v1.8.110'))
deps.append(('libsub', 'v1.6.52'))
deps.append(('leqm-nrt', '30dcaea1373ac62fba050e02ce5b0c1085797a23'))
deps.append(('rtaudio', 'f619b76'))
Config::copy_and_link (boost::filesystem::path new_file) const
{
write ();
- dcp::filesystem::copy_file(config_read_file(), new_file, boost::filesystem::copy_option::overwrite_if_exists);
+ dcp::filesystem::copy_file(config_read_file(), new_file, dcp::filesystem::CopyOptions::OVERWRITE_EXISTING);
link (new_file);
}
);
if (dialog.ShowModal() == wxID_OK) {
- dcp::filesystem::copy_file(Config::instance()->cinemas_file(), wx_to_std(dialog.GetPath()), boost::filesystem::copy_option::overwrite_if_exists);
+ dcp::filesystem::copy_file(Config::instance()->cinemas_file(), wx_to_std(dialog.GetPath()), dcp::filesystem::CopyOptions::OVERWRITE_EXISTING);
}
}
from waflib import Logs, Context
APPNAME = 'dcpomatic'
-libdcp_version = '1.8.107'
+libdcp_version = '1.8.110'
libsub_version = '1.6.49'
this_version = subprocess.Popen(['git', 'tag', '-l', '--points-at', 'HEAD'], stdout=subprocess.PIPE).communicate()[0]