From: Timo Heister Date: Fri, 5 Feb 2016 00:00:23 +0000 (-0500) Subject: use correct version variables X-Git-Tag: v8.4.0-rc2~35^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=497444b67869f1ac4ace13554243e18c7cb4de33;p=dealii.git use correct version variables --- diff --git a/cmake/configure/configure_boost.cmake b/cmake/configure/configure_boost.cmake index cc6dc845c8..1abebf9c86 100644 --- a/cmake/configure/configure_boost.cmake +++ b/cmake/configure/configure_boost.cmake @@ -57,7 +57,7 @@ MACRO(FEATURE_BOOST_FIND_EXTERNAL var) # Blacklist version 1.58 because we get serialization errors with it. At # least version 1.56 and 1.59 are known to work. # - IF("${Boost_MAJOR_VERSION}" STREQUAL "1" AND "${Boost_MINOR_VERSION}" STREQUAL "58") + IF("${BOOST_VERSION_MAJOR}" STREQUAL "1" AND "${BOOST_VERSION_MINOR}" STREQUAL "58") MESSAGE(STATUS "Boost version 1.58 is not compatible with deal.II!") SET(${var} FALSE) ENDIF()