summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/wscript b/wscript
index 69a2219..56b29a9 100644
--- a/wscript
+++ b/wscript
@@ -57,8 +57,8 @@ def configure(conf):
define_name='HAVE_GCOV',
mandatory=False)
- autowaf.check_header(conf, 'cxx', 'memory')
- autowaf.check_header(conf, 'cxx', 'atomic')
+ conf.check_cxx(header_name='memory')
+ conf.check_cxx(header_name='atomic')
# TODO: Version includes and use autowaf.set_lib_env() here
conf.env['INCLUDES_RAUL'] = [os.path.abspath(top) + '/raul']