summaryrefslogtreecommitdiffstats
path: root/src/auto/configure
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2011-12-08 15:17:34 +0100
committerBram Moolenaar <Bram@vim.org>2011-12-08 15:17:34 +0100
commitaeabe0545d5bcb6a89fad63078fb310f630b77fd (patch)
treee4e18188e06e081036fb6b851db09518588cf82a /src/auto/configure
parentae7ba984ee6913f36c58960eab2eb2c80538efc4 (diff)
updated for version 7.3.368v7.3.368
Problem: Gcc complains about redefining _FORTIFY_SOURCE. Solution: Undefine it before redefining it.
Diffstat (limited to 'src/auto/configure')
-rwxr-xr-xsrc/auto/configure4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/auto/configure b/src/auto/configure
index e391b1c504..ff2e13b21d 100755
--- a/src/auto/configure
+++ b/src/auto/configure
@@ -12483,10 +12483,10 @@ $as_echo "yes" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
fi
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need -D_FORTIFY_SOURCE=1" >&5
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we need -D_FORTIFY_SOURCE=1" >&5
$as_echo_n "checking whether we need -D_FORTIFY_SOURCE=1... " >&6; }
if test "$gccmajor" -gt "3"; then
- CFLAGS=`echo "$CFLAGS" | sed -e 's/-Wp,-D_FORTIFY_SOURCE=.//g' -e 's/-D_FORTIFY_SOURCE=.//g' -e 's/$/ -D_FORTIFY_SOURCE=1/'`
+ CFLAGS=`echo "$CFLAGS" | sed -e 's/-Wp,-D_FORTIFY_SOURCE=.//g' -e 's/-D_FORTIFY_SOURCE=.//g' -e 's/$/ -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1/'`
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
$as_echo "yes" >&6; }
else