diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-09-23 21:13:57 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-09-23 21:13:57 +0200 |
| commit | 466a21fbf04f9b5ee1bcddc0f9cee6c454799006 (patch) | |
| tree | 2fca6c1d3104ab52718f5b7e8e4057a81ec1df3b /wscript | |
| parent | d82e972701165517517788b8b51eb089419a20cb (diff) | |
Another fix for new boost.
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -237,6 +237,15 @@ def configure(conf): define_name='LIBDCP_HAVE_COPY_OPTIONS') conf.check_cxx(fragment=""" + #include <boost/filesystem.hpp>\n + int main() { boost::filesystem::path y = "foo"; y.replace_extension("bar"); }\n + """, + mandatory=False, + msg='Checking for boost::filesystem::replace_extension', + uselib='BOOST_FILESYSTEM', + define_name='LIBDCP_HAVE_REPLACE_EXTENSION') + + conf.check_cxx(fragment=""" #include <boost/date_time.hpp>\n int main() { boost::gregorian::day_clock::local_day(); }\n """, |
