diff options
author | 2016-01-28 18:29:45 -0800 | |
---|---|---|
committer | 2016-01-31 10:53:51 -0800 | |
commit | c991cbef61db9cf21ff0a5455e60f46acb0513a3 (patch) | |
tree | e02e0e734707941bcf22076ce5f335f2796c313a | |
parent | b9fba5982409385cfa553d9e6bd2cb59180675b1 (diff) | |
download | paludis-c991cbef61db9cf21ff0a5455e60f46acb0513a3.tar.gz paludis-c991cbef61db9cf21ff0a5455e60f46acb0513a3.tar.xz |
build: forget about -std=c++0x
GCC 4.7 added support for `-std=c++11` which represents the final specification
of what was originally known as C++0x. clang supports this standard since 3.4
(~1.5 years old). Let `-std=c++0x' fall to the annals of history.
-rw-r--r-- | configure.ac | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index b71775342..da6ee9b97 100644 --- a/configure.ac +++ b/configure.ac @@ -355,9 +355,6 @@ fi AC_MSG_RESULT([${cxxflags_message}]) CHECK_CXXFLAG([-std=c++11]) -if test x"$cxxflag_success" = x"no" ; then - CHECK_CXXFLAG([-std=c++0x]) -fi CHECK_CXXFLAG([-fvisibility=hidden]) CHECK_CXXFLAG([-fvisibility-inlines-hidden]) |