From: Jelmer Vernooij Date: Sun, 27 Dec 2015 22:07:59 +0000 (+0000) Subject: Add private_headers flag to SAMBA_*() functions. X-Git-Url: http://git.samba.org/?p=obnox%2Fsamba%2Fsamba-obnox.git;a=commitdiff_plain;h=48ebeaa4aa5bab0bf1692d18a57f84ea97ca436b Add private_headers flag to SAMBA_*() functions. While this argument is correctly ignored, it does mean that we can associate private headers with specific subsystems/libraries. Signed-Off-By: Jelmer Vernooij Reviewed-By: Andrew Bartlett Reviewed-By: Stefan Metzmacher --- diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py index 8af8455d242..3b05916b45b 100644 --- a/buildtools/wafsamba/wafsamba.py +++ b/buildtools/wafsamba/wafsamba.py @@ -106,6 +106,7 @@ def SAMBA_LIBRARY(bld, libname, source, includes='', public_headers=None, public_headers_install=True, + private_headers=None, header_path=None, pc_files=None, vnum=None, @@ -187,6 +188,7 @@ def SAMBA_LIBRARY(bld, libname, source, includes = includes, public_headers = public_headers, public_headers_install = public_headers_install, + private_headers= private_headers, header_path = header_path, cflags = cflags, group = subsystem_group, @@ -337,6 +339,7 @@ def SAMBA_BINARY(bld, binname, source, deps='', includes='', public_headers=None, + private_headers=None, header_path=None, modules=None, ldflags=None, @@ -539,6 +542,7 @@ def SAMBA_SUBSYSTEM(bld, modname, source, includes='', public_headers=None, public_headers_install=True, + private_headers=None, header_path=None, cflags='', cflags_end=None, @@ -631,6 +635,7 @@ def SAMBA_GENERATOR(bld, name, rule, source='', target='', group='generators', enabled=True, public_headers=None, public_headers_install=True, + private_headers=None, header_path=None, vars=None, dep_vars=[],