configure.ac: Port to gcc 5

Apparently gcc 5 behaves as follows:
$ gcc -dumpversion
5



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15773
This commit is contained in:
Bart Van Assche
2016-01-25 04:27:25 +00:00
parent be3614b774
commit 85cbffe27b
3 changed files with 5 additions and 1 deletions

View File

@@ -21,6 +21,7 @@ int main(int argc, char** argv)
return 0;
}
#if defined(__GNUC__) && __GNUC__ -0 < 6
//
// From libstdc++-v3/src/c++11/thread.cc
//
@@ -65,3 +66,4 @@ namespace std
}
}
}
#endif