14.11.2022 14:59, Peter Maydell wrote: ..
We can do something likeconfig_host_data.set('HAVE_CAPSTONE_CAPSTONE_H', cc.has_header('capstone/capstone.h', depedencies: [capstone])
This doesn't work, because has_header does not have "dependencies" argument. And without that, it doesn't take pkgconfig's --cflags into account.
Dan: is there a reason why in commit 8f4aea712ffc4 you wrote the "check that capstone.h really exists" check with cc.compiles rather than cc.has_header ?
Maybe that's why. /mjt