diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-01-24 13:28:22 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-01-24 13:28:22 +0100 |
| commit | 7187b59857f84a5a94441f0873130cf0801e8ea6 (patch) | |
| tree | 8ba431dbf60d2b6458de051d19be084242f1e675 /wscript | |
| parent | 744eae9a14f834088289d10d7158ad89857565ad (diff) | |
wipcancel
Diffstat (limited to 'wscript')
| -rw-r--r-- | wscript | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -263,6 +263,15 @@ def configure(conf): lib=['boost_date_time%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix], uselib_store='BOOST_DATETIME') + conf.check_cxx(fragment=""" + #include <boost/thread.hpp>\n + int main() { boost::thread t; }\n + """, + msg='Checking for boost threading library', + lib=['boost_thread%s' % boost_lib_suffix, 'boost_system%s' % boost_lib_suffix], + uselib_store='BOOST_THREAD') + + conf.check_cfg(package='libavcodec', args='--cflags --libs', uselib_store='AVCODEC', mandatory=True) conf.check_cfg(package='libavutil', args='--cflags --libs', uselib_store='AVUTIL', mandatory=True) |
