test/CMakeLists.txt: Fix Boost version requirement.
authorUwe Hermann <uwe@hermann-uwe.de>
Wed, 30 Oct 2013 09:43:16 +0000 (10:43 +0100)
committerUwe Hermann <uwe@hermann-uwe.de>
Wed, 30 Oct 2013 09:43:47 +0000 (10:43 +0100)
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

index e0f4fce7db8b9ca9eb0e0d4a6c6be1946b6cd71c..0a58cde8e747d41dbd5f22308449d0ef23336e0d 100644 (file)
@@ -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)