This commit is contained in:
Thomas Nagy 2016-08-20 12:21:16 +02:00
parent 145118227c
commit 93bda59033
No known key found for this signature in database
GPG Key ID: 49B4C67C05277AAA
2 changed files with 3 additions and 3 deletions

View File

@ -2,9 +2,9 @@ NEW IN WAF 1.9.3
----------------
* Enable configuration task class lookup in conf.multicheck
* Enable individual output lines in conf.multicheck
* Parallel configuration tests can use any build function
* Updated examples for stripping executables
* More documentation
* Qt 5.7 detection
* Qt 5.7 detection of -std=c++11
NEW IN WAF 1.9.2
----------------

View File

@ -43,7 +43,7 @@ def configure(conf):
conf.multicheck(
{'header_name':'stdio.h', 'msg':'... stdio'},
{'header_name':'unistd.h', 'msg':'... unistd'},
{'header_name':'ueistd.h', 'msg':'... unistd', 'mandatory':False},
{'header_name':'stdlib.h', 'msg':'... stdlib', 'okmsg': 'aye', 'errmsg': 'nope'},
{'func': test_build, 'msg':'... testing an arbitrary build function', 'okmsg':'ok'},
msg = 'Checking for headers in parallel',