From 2ec05cc6cdb6b34f99e9dc82d123d3d0b41d6690 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Wed, 30 Oct 2013 10:43:16 +0100 Subject: [PATCH] test/CMakeLists.txt: Fix Boost version requirement. The current requirement is 1.42, the 1.46 in test/CMakeLists.txt is a copy-paste error. This was noticed since OpenBSD currently ships 1.42 and the tests would not build there. --- test/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index e0f4fce7..0a58cde8 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -30,7 +30,7 @@ pkg_check_modules(PKGDEPS REQUIRED ${PKGDEPS}) # This will set ${CMAKE_THREAD_LIBS_INIT} to the correct, OS-specific value. find_package(Threads) -find_package(Boost 1.46 COMPONENTS system thread unit_test_framework REQUIRED) +find_package(Boost 1.42 COMPONENTS system thread unit_test_framework REQUIRED) FIND_PROGRAM(QT_QMAKE_EXECUTABLE NAMES qmake4 qmake-qt4 qmake-mac) find_package(Qt4 REQUIRED) -- 2.30.2