diff options
author | Claes Nästén <pekdon@gmail.com> | 2025-02-19 00:01:12 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2025-02-19 00:01:12 +0100 |
commit | 7a595afa37423b99f79efbbbb2241090cb56653a (patch) | |
tree | 145cb9a1d533d6a9eba6673e3ab34efcd51d58c2 /configure.ac | |
parent | 6cd133d2f242d36bd48ddea44acd868f70782d0b (diff) |
Compile without -std=c++11
Don't force full C++11 support, as we only require a very small subset
of features that may be available in the compiler as extensions like
GNU.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index d9727be8..fd5c8faa 100644 --- a/configure.ac +++ b/configure.ac @@ -708,7 +708,7 @@ dnl ----------- dnl if eval "test x$GCC = xyes"; then - CXXFLAGS="$CXXFLAGS -Wall -W -Wno-unused-parameter -fno-rtti -fno-exceptions -pedantic -std=c++11 -D_POSIX_C_SOURCE=200112L" + CXXFLAGS="$CXXFLAGS -Wall -W -Wno-unused-parameter -fno-rtti -fno-exceptions -pedantic -D_POSIX_C_SOURCE=200112L" fi dnl ---------------------------------- |