summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfigure7
-rw-r--r--configure.in7
2 files changed, 8 insertions, 6 deletions
diff --git a/configure b/configure
index 2056550..455e62a 100755
--- a/configure
+++ b/configure
@@ -5450,9 +5450,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)
diff --git a/configure.in b/configure.in
index 07ec3e2..95fb8c5 100644
--- a/configure.in
+++ b/configure.in
@@ -907,9 +907,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)