configure: Try compiler flags to get to C++11 (#2502)

This commit is contained in:
Wilson Snyder
2020-08-17 07:40:07 -04:00
parent ea9b65fe6d
commit 698e0fbbd1
4 changed files with 24 additions and 20 deletions
+1 -1
View File
@@ -122,7 +122,7 @@
# if defined(_MSC_VER) && _MSC_VER >= 1900
# define VL_THREAD_LOCAL thread_local
# elif defined(__GNUC__)
# if (__cplusplus < 201103L) && !defined(VL_THREADED_NO_C11_WARNING)
# if (__cplusplus < 201103L)
# error "VL_THREADED/--threads support requires C++-11 or newer only; use newer compiler"
# endif
# else