diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-03-17 01:25:02 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-03-22 13:29:58 +0100 |
| commit | 9dd72fc481349f0b5ce985164441eecfa6485c19 (patch) | |
| tree | d8136ef6d6b660a5a411722a128d0e309333ff3d /wscript | |
| parent | 169c47ede14b6e86e054871a56ffa048357b4463 (diff) | |
Add abstraction of io_{context,service} and use it as appropriate.
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -638,6 +638,14 @@ def configure(conf): lib=deps, uselib_store='BOOST_PROCESS') + conf.check_cxx(fragment=""" + #include <boost/asio.hpp> + int main() { boost::asio::io_context context; } + """, + msg='Checking for boost::asio::io_context', + define_name='DCPOMATIC_HAVE_BOOST_ASIO_IO_CONTEXT', + mandatory=False) + # sqlite3 conf.check_cfg(package="sqlite3", args='--cflags --libs', uselib_store='SQLITE3', mandatory=True) conf.check_cxx(fragment=""" |
