Browse Source

Backport second fix for issue #11149.

pull/2332/head
Stefan Krah 14 years ago
parent
commit
2bc1e8fbf2
  1. 7
      configure
  2. 7
      configure.in

7
configure

@ -5413,9 +5413,10 @@ then
fi
# Clang also needs -fwrapv
if test "$CC" = "clang" ; then
WRAP="-fwrapv"
fi
case $CC in
*clang*) WRAP="-fwrapv"
;;
esac
case $ac_cv_prog_cc_g in
yes)

7
configure.in

@ -934,9 +934,10 @@ then
fi
# Clang also needs -fwrapv
if test "$CC" = "clang" ; then
WRAP="-fwrapv"
fi
case $CC in
*clang*) WRAP="-fwrapv"
;;
esac
case $ac_cv_prog_cc_g in
yes)

Loading…
Cancel
Save