about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrancisco Souza <f@souza.cc>2012-07-29 15:04:49 -0300
committerGraydon Hoare <graydon@mozilla.com>2012-07-30 15:46:42 -0700
commit50f2db4a0e57a03a799a93f95dfd8ce10ffa21dc (patch)
tree606a6b48cad21c553db5e356f7ed7cec860d60b6
parentcf305560b67be5f7f01bf58a7f69a711bbe2101f (diff)
configure: fix compatibility issue with Apple clang 4.0
Fix compatibility with Mountain Lion.

Closes #3049.
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 06bddccc15c..040bae9fe60 100755
--- a/configure
+++ b/configure
@@ -400,7 +400,7 @@ then
                       | cut -d ' ' -f 2)
 
     case $CFG_CLANG_VERSION in
-        (3.0svn | 3.0 | 3.1)
+        (3.0svn | 3.0 | 3.1 | 4.0)
         step_msg "found ok version of CLANG: $CFG_CLANG_VERSION"
         CFG_C_COMPILER="clang"
         ;;