Kaydet (Commit) 9a17cc3c authored tarafından Stefan Krah's avatar Stefan Krah

Merge second fix for issue #11149.

...@@ -5450,9 +5450,10 @@ then ...@@ -5450,9 +5450,10 @@ then
fi fi
# Clang also needs -fwrapv # Clang also needs -fwrapv
if test "$CC" = "clang" ; then case $CC in
WRAP="-fwrapv" *clang*) WRAP="-fwrapv"
fi ;;
esac
case $ac_cv_prog_cc_g in case $ac_cv_prog_cc_g in
yes) yes)
......
...@@ -907,9 +907,10 @@ then ...@@ -907,9 +907,10 @@ then
fi fi
# Clang also needs -fwrapv # Clang also needs -fwrapv
if test "$CC" = "clang" ; then case $CC in
WRAP="-fwrapv" *clang*) WRAP="-fwrapv"
fi ;;
esac
case $ac_cv_prog_cc_g in case $ac_cv_prog_cc_g in
yes) yes)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment