commit | 728bcdff610af89352057400463e1ab34fc1c37a | [log] [tgz] |
---|---|---|
author | Lei Zhang <thestig@chromium.org> | Fri Jan 08 00:27:48 2016 -0800 |
committer | Lei Zhang <thestig@chromium.org> | Fri Jan 08 00:27:48 2016 -0800 |
tree | e725007ab3a970f7681011a0be2c00b609036b15 | |
parent | 98bea93a3e4f6fb822db3ac5d876e84109f24101 [diff] [blame] |
Check for C++11 support in the configure script. R=mark@chromium.org Review URL: https://codereview.chromium.org/1570013002 .
diff --git a/configure.ac b/configure.ac index da14d61..cbea712 100644 --- a/configure.ac +++ b/configure.ac
@@ -76,6 +76,9 @@ AX_PTHREAD AC_CHECK_HEADERS([a.out.h]) +m4_include(m4/ax_cxx_compile_stdcxx.m4) +AX_CXX_COMPILE_STDCXX(11, noext, mandatory) + # Only build Linux client libs when compiling for Linux case $host in *-*-linux* | *-android* )