From: Jim Meyering Date: Thu, 9 Jul 2009 13:20:15 +0000 (+0200) Subject: build: avoid build warn/failure due to -Wstack-protector X-Git-Tag: v7.5~60 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a9461064b8d47089e9ae7f8bc1c5c84e9e2d1d64;p=thirdparty%2Fcoreutils.git build: avoid build warn/failure due to -Wstack-protector * configure.ac: Do not enable -Wstack-protector. Otherwise, at least df.c would provoke a warning. --- diff --git a/configure.ac b/configure.ac index 32d2958154..4cb9d29035 100644 --- a/configure.ac +++ b/configure.ac @@ -82,6 +82,7 @@ if test "$gl_gcc_warnings" = yes; then nw="$nw -Wnested-externs" # use of XARGMATCH/verify_function__ nw="$nw -Wswitch-enum" # Too many warnings for now nw="$nw -Wswitch-default" # Too many warnings for now + nw="$nw -Wstack-protector" # not worth working around # things I might fix soon: nw="$nw -Wfloat-equal" # sort.c, seq.c nw="$nw -Wmissing-format-attribute" # copy.c