diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-10-09 10:59:33 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-10-09 10:59:33 +0100 |
| commit | 7bbcb5240103b4ab19a7b35cd888dd25cf56aad1 (patch) | |
| tree | d4bc99a86773ed49ec38d38029f360c1dcddc1f8 /src/lib/util.cc | |
| parent | abf7799a1997c6519c04e6488f39553d92c5df16 (diff) | |
Try to fix openssl use on Windows.
Diffstat (limited to 'src/lib/util.cc')
| -rw-r--r-- | src/lib/util.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/util.cc b/src/lib/util.cc index ae3de2d6b..e0495f18b 100644 --- a/src/lib/util.cc +++ b/src/lib/util.cc @@ -65,6 +65,7 @@ extern "C" { #include "config.h" #include "ratio.h" #include "job.h" +#include "cross.h" #ifdef DCPOMATIC_WINDOWS #include "stack.hpp" #endif @@ -824,7 +825,7 @@ make_signer () { boost::filesystem::path const sd = Config::instance()->signer_chain_directory (); if (boost::filesystem::is_empty (sd)) { - libdcp::make_signer_chain (sd); + libdcp::make_signer_chain (sd, openssl_path ()); } libdcp::CertificateChain chain; |
