Le 06/06/2016 22:26, Georg Baum a écrit :
It turned out that it was too difficult to retain the stuff for some hypothetical future C++14 checks. I will commit the attached unless nobody objects. This is simply the unconditional use of C++11. After this patch it would be possible to get rid of parts of the included boost already.
Why do you remove the code that checks for C++11? At some time my idea was to do
for arg in "" "-std c++11" "-std c++0x" ; do if $CXX $arg is a C++11 compiler then break done if $CXX $arg is not C++11 ERROR(C++11 compiler not found) JMarc