3rdparty: libbacktrace: wscript: fix config defines not being set

This commit is contained in:
Alibek Omarov
2025-10-02 05:16:59 +08:00
parent 5015c90fd0
commit 25bfbd3a6b
+1 -1
View File
@@ -95,7 +95,7 @@ def configure(conf):
return {'header_name':hdr, 'msg':'... %s header' % hdr, 'mandatory':False, 'id':hdr, 'compiler': 'c'}
def check_frag(frag, msg, define, **kw):
return dict({'fragment': frag, 'msg':'... %s' % msg, 'mandatory': False, 'compiler': 'c'}, **kw)
return dict({'fragment': frag, 'msg':'... %s' % msg, 'mandatory': False, 'define_name': define, 'compiler': 'c'}, **kw)
conf.multicheck(
check_header('dlfcn.h'),