summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorH.Merijn Brand <h.m.brand@xs4all.nl>2014-04-09 12:31:23 +0200
committerH.Merijn Brand <h.m.brand@xs4all.nl>2014-04-09 12:31:23 +0200
commit00051dd553979bd2a1dee100c324b59ee76a49e7 (patch)
tree5ceda01d9d82d861260c57b6cf3dc5f92263ae83 /Configure
parent869747506fd0081f6c7eed149ec6f7adbcc4d5b1 (diff)
downloadperl-00051dd553979bd2a1dee100c324b59ee76a49e7.tar.gz
-fwrapv is broken prior to gcc-4.3 (googled and patched by Zefram)
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/Configure b/Configure
index 2d01f918e4..293ef61788 100755
--- a/Configure
+++ b/Configure
@@ -28,7 +28,7 @@
# See Porting/pumpkin.pod for more information on metaconfig.
#
-# Generated on Wed Apr 9 10:58:09 CEST 2014 [metaconfig 3.5 PL0]
+# Generated on Wed Apr 9 12:24:24 CEST 2014 [metaconfig 3.5 PL0]
# (with additional metaconfig patches by perlbug@perl.org)
cat >c1$$ <<EOF
@@ -4652,7 +4652,7 @@ esac
# disables -fwrapv, or if the user requests -fsanitize=undefined,
# which turns the overflows -fwrapv ignores into runtime errors.
case "$gccversion" in
-4.9.*|4.1[0-9].*|[5-9].*)
+4.[3-9].*|4.[1-9][0-9]*|[5-9].*|[1-9][0-9]*)
case "$ccflags" in
*-fno-wrapv*|*-fsanitize=undefined*|*-fwrapv*) ;;
*) ccflags="$ccflags -fwrapv" ;;