diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-08-25 05:58:33 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:58:20 -0500 |
commit | 3d065b198e0ea03b8b4131de0eb9a62e502ac67a (patch) | |
tree | 095d2327c7c3bb5e843f0eb7e5e49f4b0bdc6813 /source4/build | |
parent | 15d0ce19772a0890e26af5ceeea1844a5f65d83c (diff) | |
download | samba-3d065b198e0ea03b8b4131de0eb9a62e502ac67a.tar.gz samba-3d065b198e0ea03b8b4131de0eb9a62e502ac67a.tar.bz2 samba-3d065b198e0ea03b8b4131de0eb9a62e502ac67a.zip |
r2047: Warn on 'declaration after statement' (breaks non-gcc).
Andrew Bartlett
(This used to be commit ce96816d0eeb0b71efd15c77d10ec76303a0abb8)
Diffstat (limited to 'source4/build')
-rw-r--r-- | source4/build/smb_build/check_path.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/build/smb_build/check_path.m4 b/source4/build/smb_build/check_path.m4 index 3d1d4c8c18..7a7ae12d41 100644 --- a/source4/build/smb_build/check_path.m4 +++ b/source4/build/smb_build/check_path.m4 @@ -129,7 +129,7 @@ AC_ARG_ENABLE(developer, [ --enable-developer Turn on developer warnings a debug=yes CFLAGS="${CFLAGS} -g -Wall" developer=yes - DEVELOPER_CFLAGS="-Wshadow -Werror-implicit-function-declaration -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -DDEBUG_PASSWORD -DDEVELOPER" + DEVELOPER_CFLAGS="-Wshadow -Werror-implicit-function-declaration -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -Wdeclaration-after-statement -DDEBUG_PASSWORD -DDEVELOPER" fi]) AC_ARG_ENABLE(krb5developer, [ --enable-krb5developer Turn on developer warnings and debugging, except -Wstrict-prototypes (default=no)], @@ -137,7 +137,7 @@ AC_ARG_ENABLE(krb5developer, [ --enable-krb5developer Turn on developer warnin debug=yes CFLAGS="${CFLAGS} -g -Wall" developer=yes - DEVELOPER_CFLAGS="-Wshadow -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -DDEBUG_PASSWORD -DDEVELOPER" + DEVELOPER_CFLAGS="-Wshadow -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -Wdeclaration-after-statement -DDEBUG_PASSWORD -DDEVELOPER" fi]) AC_ARG_ENABLE(gtkdeveloper, [ --enable-gtkdeveloper Turn on developer warnings and debugging, except -Wstrict-prototypes and -Wshadow (default=no)], @@ -145,7 +145,7 @@ AC_ARG_ENABLE(gtkdeveloper, [ --enable-gtkdeveloper Turn on developer warnings debug=yes CFLAGS="${CFLAGS} -g -Wall" developer=yes - DEVELOPER_CFLAGS="-Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -DDEBUG_PASSWORD -DDEVELOPER" + DEVELOPER_CFLAGS="-Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -Wdeclaration-after-statement -DDEBUG_PASSWORD -DDEVELOPER" fi]) experimental=no |