From: Paul Eggert Date: Sat, 1 Sep 2012 18:54:38 +0000 (-0700) Subject: * configure.ac (_FORTIFY_SOURCE): Define only when optimizing. X-Git-Tag: emacs-24.2.90~446 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2d3800d2cf34188b0b3ee30012d09f3426b9ae01;p=emacs.git * configure.ac (_FORTIFY_SOURCE): Define only when optimizing. This ports to glibc 2.15 or later, when configured with --enable-gcc-warnings. See Eric Blake in . --- diff --git a/ChangeLog b/ChangeLog index 6e93b8313e7..cf4506f0c77 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2012-09-01 Paul Eggert + + * configure.ac (_FORTIFY_SOURCE): Define only when optimizing. + This ports to glibc 2.15 or later, when configured with + --enable-gcc-warnings. See Eric Blake in + . + 2012-09-01 Daniel Colascione * configure.ac: Introduce term_header variable, which holds the diff --git a/configure.ac b/configure.ac index d16113bf919..43686361d07 100644 --- a/configure.ac +++ b/configure.ac @@ -737,8 +737,13 @@ else gl_WARN_ADD([-funit-at-a-time]) AC_DEFINE([lint], [1], [Define to 1 if the compiler is checking for lint.]) - AC_DEFINE([_FORTIFY_SOURCE], [2], - [enable compile-time and run-time bounds-checking, and some warnings]) + AH_VERBATIM([FORTIFY_SOURCE], + [/* Enable compile-time and run-time bounds-checking, and some warnings, + without upsetting glibc 2.15+. */ + #if defined __OPTIMIZE__ && __OPTIMIZE__ + # define _FORTIFY_SOURCE 2 + #endif + ]) AC_DEFINE([GNULIB_PORTCHECK], [1], [enable some gnulib portability checks]) # We use a slightly smaller set of warning options for lib/.