summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2015-11-15 19:45:06 -0500
committerJarkko Hietaniemi <jhi@iki.fi>2015-11-16 06:44:45 -0500
commit0632167b5a653661f48c9e38df6aa76b544d4079 (patch)
tree851f88878512c6d3a3e5784d52d8af8805872b75 /Configure
parentba705463520faca567413dfbc118af8e3cc3e4b0 (diff)
downloadperl-0632167b5a653661f48c9e38df6aa76b544d4079.tar.gz
Configure: gcc 5 exists.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/Configure b/Configure
index 18bab85991..07f0bc1201 100755
--- a/Configure
+++ b/Configure
@@ -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