details: http://hugin.hg.sourceforge.net/hgweb/hugin/hugin/hgrepo/h/hu/hugin/hugin/rev/3f560fa2730e
changeset: 4250:3f560fa2730e
user: Bruno Postle <bruno@...>
date: Thu Aug 26 23:19:16 2010 +0100
description:
Need to link explicitely to libboost_system-mt when building with gcc-4.4.4 on fedora 13
diffstat:
CMakeLists.txt | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 72e8b6455103 -r 3f560fa2730e CMakeLists.txt
--- a/CMakeLists.txt Thu Aug 26 19:11:20 2010 +0200
+++ b/CMakeLists.txt Thu Aug 26 23:19:16 2010 +0100
@@ -232,7 +232,7 @@
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 regex filesystem iostreams)
+FIND_PACKAGE(Boost 1.34 COMPONENTS thread regex filesystem iostreams system-mt)
IF (NOT Boost_FOUND)
IF(WIN32)
MESSAGE(FATAL_ERROR "Boost not found. Bad BOOST_ROOT? On windows, try editing Boost_root_suffix")
|