diff options
Diffstat (limited to 'buildtools')
-rw-r--r-- | buildtools/wafsamba/samba_autoconf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_autoconf.py b/buildtools/wafsamba/samba_autoconf.py index 91d8a56fe3..ec0ed16e52 100644 --- a/buildtools/wafsamba/samba_autoconf.py +++ b/buildtools/wafsamba/samba_autoconf.py @@ -80,7 +80,7 @@ def nolink(self): def CHECK_HEADER(conf, h, add_headers=False, lib=None): '''check for a header''' - if h in missing_headers: + if h in missing_headers and lib is None: return False d = h.upper().replace('/', '_') d = d.replace('.', '_') |