From 5ea373e101fe7153b0038d9cde015de5f6a6d314 Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Wed, 8 Aug 2012 13:16:57 +0200 Subject: [PATCH] autogen.sh: disable _FORTIFY_SOURCE, we want -O0, which is incompatible --- autogen.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autogen.sh b/autogen.sh index 86fe9b3785..33d8fcda23 100755 --- a/autogen.sh +++ b/autogen.sh @@ -54,7 +54,7 @@ args="$args \ fi if [ "x$1" = "xc" ]; then - ./configure CFLAGS='-g -O0' $args + ./configure CFLAGS='-g -O0 -Wp,-U_FORTIFY_SOURCE' $args make clean else echo @@ -62,6 +62,6 @@ else echo "Initialized build system. For a common configuration please run:" echo "----------------------------------------------------------------" echo - echo "./configure CFLAGS='-g -O0' $args" + echo "./configure CFLAGS='-g -O0 -Wp,-U_FORTIFY_SOURCE' $args" echo fi