diff options
author | Stefan Metzmacher <metze@samba.org> | 2014-05-22 10:41:33 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-11-25 07:25:46 +0100 |
commit | 989eb5d8f8125306045a5db5f2fd9f5caf616754 (patch) | |
tree | a566841c40ab06804371bfe681e0db99cf40609b /buildtools | |
parent | 6f5143d9e818b71d74da430c1d693153017347e6 (diff) | |
download | samba-989eb5d8f8125306045a5db5f2fd9f5caf616754.tar.gz |
wafsamba: use -Wno-error=deprecated-declarations in picky-developer mode
Currently we use too many deprecated function like
dcerpc_binding_handle_set_sync_ev() and others, but this should not be a reason
to require 'allow_warnings=True'.
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
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 c1938731164..c8180253d86 100644 --- a/buildtools/wafsamba/samba_autoconf.py +++ b/buildtools/wafsamba/samba_autoconf.py @@ -691,7 +691,7 @@ int main(void) { conf.env['EXTRA_CFLAGS'].extend(TO_LIST("-Werror=format")) if Options.options.picky_developer: - conf.ADD_NAMED_CFLAGS('PICKY_CFLAGS', '-Werror', testflags=True) + conf.ADD_NAMED_CFLAGS('PICKY_CFLAGS', '-Werror -Wno-error=deprecated-declarations', testflags=True) if Options.options.fatal_errors: conf.ADD_CFLAGS('-Wfatal-errors', testflags=True) |