branch: gsoc2011_onomou
details: http://hugin.hg.sourceforge.net/hgweb/hugin/hugin/hgrepo/h/hu/hugin/hugin/rev/41ff5b30b6e0
changeset: 5364:41ff5b30b6e0
user: Yuval Levy <yuv@...>
date: Fri Jul 08 09:29:40 2011 -0400
description:
uptick required boost version (fix bug 805709)
diffstat:
CMakeLists.txt | 4 ++--
README | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diffs (30 lines):
diff -r c87895d95d49 -r 41ff5b30b6e0 CMakeLists.txt
--- a/CMakeLists.txt Wed Jul 06 19:12:52 2011 -0700
+++ b/CMakeLists.txt Fri Jul 08 09:29:40 2011 -0400
@@ -260,12 +260,12 @@
set(BOOST_ROOT ${SOURCE_BASE_DIR}/boost${Boost_root_suffix})
endif(NOT BOOST_ROOT AND NOT $ENV{BOOST_ROOT} STREQUAL "")
ENDIF(WIN32)
-FIND_PACKAGE(Boost 1.34 COMPONENTS thread date_time regex filesystem iostreams system signals)
+FIND_PACKAGE(Boost 1.41 COMPONENTS thread date_time regex filesystem iostreams system signals)
IF (NOT Boost_FOUND)
IF(WIN32)
MESSAGE(FATAL_ERROR "Boost not found. Bad BOOST_ROOT? On windows, try editing Boost_root_suffix")
ELSE()
- MESSAGE(FATAL_ERROR "Boost not found. Maybe wrong version. Hugin requires at least version 1.34")
+ MESSAGE(FATAL_ERROR "Boost not found. Maybe wrong version. Hugin requires at least version 1.41")
ENDIF()
ENDIF (NOT Boost_FOUND)
diff -r c87895d95d49 -r 41ff5b30b6e0 README
--- a/README Wed Jul 06 19:12:52 2011 -0700
+++ b/README Fri Jul 08 09:29:40 2011 -0400
@@ -46,7 +46,7 @@
Users compiling Hugin from source will need:
The wxWidgets GUI toolkit version >=2.7.0. 2.9 support is experimental. 2.8.11 is recommended.
- boost >=1.34. The following boost libraries are used:
+ boost >=1.41. The following boost libraries are used:
filesystem
graph
iostreams
|