Changeset 106688 in webkit


Ignore:
Timestamp:
Feb 3, 2012 1:13:17 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[GTK] configure: Print out the -Wno-c++0x-compat test result
https://bugs.webkit.org/show_bug.cgi?id=77757

Patch by Kalev Lember <kalevlember@gmail.com> on 2012-02-03
Reviewed by Martin Robinson.

The check whether -Wno-c++0x-compat flag is needed didn't print out
the test result (and newline), which caused the following test to be
displayed on the same line.

checking if we have to disable C++0x compat warnings for GCC >= 4.6.0... checking pthread.h usability... yes

  • configure.ac:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r106687 r106688  
     12012-02-03  Kalev Lember  <kalevlember@gmail.com>
     2
     3        [GTK] configure: Print out the -Wno-c++0x-compat test result
     4        https://bugs.webkit.org/show_bug.cgi?id=77757
     5
     6        Reviewed by Martin Robinson.
     7
     8        The check whether -Wno-c++0x-compat flag is needed didn't print out
     9        the test result (and newline), which caused the following test to be
     10        displayed on the same line.
     11
     12        checking if we have to disable C++0x compat warnings for GCC >= 4.6.0... checking pthread.h usability... yes
     13
     14        * configure.ac:
     15
    1162012-02-03  Ryosuke Niwa  <rniwa@webkit.org>
    217
  • trunk/configure.ac

    r106537 r106688  
    112112extern std::nullptr_t nullptr;
    113113], [return 0;],
    114 CXXFLAGS="$TMPCXXFLAGS", CXXFLAGS="$TMPCXXFLAGS -Wno-c++0x-compat")
     114disable_cxx0x_compat=no,
     115disable_cxx0x_compat=yes)
     116AC_MSG_RESULT($disable_cxx0x_compat)
     117if test "$disable_cxx0x_compat" = yes; then
     118  CXXFLAGS="$TMPCXXFLAGS -Wno-c++0x-compat"
     119else
     120  CXXFLAGS="$TMPCXXFLAGS"
     121fi
    115122AC_LANG_POP(C++)
    116123
Note: See TracChangeset for help on using the changeset viewer.