diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2015-11-15 19:45:06 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2015-11-16 06:44:45 -0500 |
commit | 0632167b5a653661f48c9e38df6aa76b544d4079 (patch) | |
tree | 851f88878512c6d3a3e5784d52d8af8805872b75 /Configure | |
parent | ba705463520faca567413dfbc118af8e3cc3e4b0 (diff) | |
download | perl-0632167b5a653661f48c9e38df6aa76b544d4079.tar.gz |
Configure: gcc 5 exists.
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -23258,7 +23258,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 @@ -23268,11 +23268,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 |