I'm using waf to build a C program. I'd like to check for the existence of a particular header file during the configuration phase. Is there a way to do that?
+2
A:
Ah, a bit of googling found the answer to my question: You can use the check
method on Configuration objects, like so:
def configure(conf):
conf.check(header_name="stdbool.h")
mipadi
2008-11-18 05:09:04