diff options
author | Günther Deschner <gd@samba.org> | 2011-03-19 00:10:08 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-03-19 00:58:25 +0100 |
commit | a252ded937db2e8e4c81b608fbbf18714a900032 (patch) | |
tree | 86c36db3de359815e91da40fa3757b13445c80f8 /buildtools/wafsamba/samba_autoconf.py | |
parent | 33b8d0a6ff51800bfadf47286584b0895b6b3e65 (diff) | |
download | samba-a252ded937db2e8e4c81b608fbbf18714a900032.tar.gz samba-a252ded937db2e8e4c81b608fbbf18714a900032.tar.bz2 samba-a252ded937db2e8e4c81b608fbbf18714a900032.zip |
wafsamba: add -Wcast-qual only to the toplevel (s4) build.
In samba3 there are a lot of warnings generated that make it a bit hard to track
and monitor other build warnings.
Guenther
Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Sat Mar 19 00:58:25 CET 2011 on sn-devel-104
Diffstat (limited to 'buildtools/wafsamba/samba_autoconf.py')
-rw-r--r-- | buildtools/wafsamba/samba_autoconf.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_autoconf.py b/buildtools/wafsamba/samba_autoconf.py index 02b52df4b0..174ca14210 100644 --- a/buildtools/wafsamba/samba_autoconf.py +++ b/buildtools/wafsamba/samba_autoconf.py @@ -597,8 +597,10 @@ def SAMBA_CONFIG_H(conf, path=None): if Options.options.developer: # we add these here to ensure that -Wstrict-prototypes is not set during configure - conf.ADD_CFLAGS('-Wall -g -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -Werror-implicit-function-declaration -Wformat=2 -Wno-format-y2k -Wmissing-prototypes', + conf.ADD_CFLAGS('-Wall -g -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-align -Wwrite-strings -Werror-implicit-function-declaration -Wformat=2 -Wno-format-y2k -Wmissing-prototypes', testflags=True) + if os.getenv('TOPLEVEL_BUILD'): + conf.ADD_CFLAGS('-Wcast-qual', testflags=True) conf.env.DEVELOPER_MODE = True if Options.options.picky_developer: |