diff options
author | 2016-12-08 11:17:12 +0100 | |
---|---|---|
committer | 2016-12-14 08:23:04 -0800 | |
commit | bfb3ba7ad1dc34f02a5dc367d8d51486c8d4701c (patch) | |
tree | d5e47241cacaf5cc383629dabbd6472739945e51 | |
parent | 04f5abc14d841d3fefa68fa6c6e7298bca63294f (diff) | |
download | paludis-bfb3ba7ad1dc34f02a5dc367d8d51486c8d4701c.tar.gz paludis-bfb3ba7ad1dc34f02a5dc367d8d51486c8d4701c.tar.xz |
build: Remove redundant check
We already require a sufficiently new compiler since we depend on the
compiler having C++11 support
Change-Id: I34f9a859be3490a7089f6902a14a03c08cb296ac
-rw-r--r-- | CMakeLists.txt | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 83256639e..9e46200fa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -304,11 +304,6 @@ if(ENABLE_PBINS) endif() if(ENABLE_PYTHON) - # TODO(compnerd) adjust for non-gcc compilers - if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.0.0) - message(SEND_ERROR "gcc >= 4.0.0 is required for python support") - endif() - find_package(PythonInterp) if(NOT PYTHONINTERP_FOUND) message(SEND_ERROR "python is required for python support") |