Changeset 155245 in webkit


Ignore:
Timestamp:
Sep 6, 2013 11:13:27 PM (11 years ago)
Author:
zandobersek@gmail.com
Message:

[GTK] Bump the required Clang version to 3.2
https://bugs.webkit.org/show_bug.cgi?id=112537

Reviewed by Gustavo Noronha Silva.

  • Source/autotools/CheckSystemAndBasicDependencies.m4: Require the Clang 3.2 stack

when the Clang compiler is specified.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r155175 r155245  
     12013-09-06  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GTK] Bump the required Clang version to 3.2
     4        https://bugs.webkit.org/show_bug.cgi?id=112537
     5
     6        Reviewed by Gustavo Noronha Silva.
     7
     8        * Source/autotools/CheckSystemAndBasicDependencies.m4: Require the Clang 3.2 stack
     9        when the Clang compiler is specified.
     10
    1112013-09-05  Brendan Long  <b.long@cablelabs.com>
    212
  • trunk/Source/autotools/CheckSystemAndBasicDependencies.m4

    r154007 r155245  
    8888])], [c_compiler="gcc"], [])
    8989AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
    90 #if !(defined(__clang__) && __clang_major__ >= 3 && __clang_minor__ >= 0)
     90#if !(defined(__clang__) && __clang_major__ >= 3 && __clang_minor__ >= 2)
    9191#error Not a supported Clang compiler
    9292#endif
     
    9595
    9696if test "$c_compiler" = "unknown"; then
    97     AC_MSG_ERROR([Compiler GCC >= 4.7 or Clang >= 3.0 is required for C compilation])
     97    AC_MSG_ERROR([Compiler GCC >= 4.7 or Clang >= 3.2 is required for C compilation])
    9898fi
    9999
     
    107107])], [cxx_compiler="g++"], [])
    108108AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
    109 #if !(defined(__clang__) && __clang_major__ >= 3 && __clang_minor__ >= 0)
     109#if !(defined(__clang__) && __clang_major__ >= 3 && __clang_minor__ >= 2)
    110110#error Not a supported Clang++ compiler
    111111#endif
     
    114114
    115115if test "$cxx_compiler" = "unknown"; then
    116     AC_MSG_ERROR([Compiler GCC >= 4.7 or Clang >= 3.0 is required for C++ compilation])
     116    AC_MSG_ERROR([Compiler GCC >= 4.7 or Clang >= 3.2 is required for C++ compilation])
    117117fi
    118118
Note: See TracChangeset for help on using the changeset viewer.