In metaconfig.git, the branch master has been updated <http://perl5.git.perl.org/metaconfig.git/commitdiff/733156e21a93029d6213e242872791dddee6c241?hp=230d1ceb93d6ecff40d72fb732df424ecd0eed08>
- Log ----------------------------------------------------------------- commit 733156e21a93029d6213e242872791dddee6c241 Author: H.Merijn Brand - Tux <[email protected]> Date: Thu Apr 21 13:12:14 2016 +0200 Configure: gcc 5 exists. Backport of 11c0dec80e86a2efeef002853ab7f0e12199f729 Author: Jarkko Hietaniemi <[email protected]> Date: Sun Nov 15 19:45:06 2015 -0500 Configure: gcc 5 exists. (cherry picked from commit 0632167b5a653661f48c9e38df6aa76b544d4079) ----------------------------------------------------------------------- Summary of changes: U/modified/Cppsym.U | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/U/modified/Cppsym.U b/U/modified/Cppsym.U index fb09952..de05202 100644 --- a/U/modified/Cppsym.U +++ b/U/modified/Cppsym.U @@ -316,7 +316,7 @@ fi : add -D_FORTIFY_SOURCE if feasible and not already there case "$gccversion" in -4.*) case "$optimize$ccflags" in +[45].*) case "$optimize$ccflags" in *-O*) case "$ccflags$cppsymbols" in *_FORTIFY_SOURCE=*) # Don't add it again. echo "You seem to have -D_FORTIFY_SOURCE already, not adding it." >&4 @@ -326,11 +326,11 @@ case "$gccversion" in ;; esac ;; - *) echo "You have gcc 4.* but not optimizing, not adding -D_FORTIFY_SOURCE." >&4 + *) echo "You have gcc 4.* or later but not optimizing, not adding -D_FORTIFY_SOURCE." >&4 ;; esac ;; -*) echo "You seem not to have gcc 4.*, not adding -D_FORTIFY_SOURCE." >&4 +*) echo "You seem not to have gcc 4.* or later, not adding -D_FORTIFY_SOURCE." >&4 ;; esac -- perl5 metaconfig repository
