Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2012-11-19 17:15:11 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2012-11-19 17:15:11 +0400
commit9947f70f19a333b4dba6ed57ae22d93fa0f89145 (patch)
tree74c3e06c16b3fe331e9ed059300b93dc275ad7d3 /CMakeLists.txt
parent3b570440e4c104e01e4937e1be55df5003707ab1 (diff)
Localization should not depend on debug locale library
Linking happens fine, but blender crashes on startup -- crash with familiar backtrace happens with i18n disabled (in that case it's something to do with OIIO).
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 34182556b4a..a411a4f69e6 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1108,8 +1108,8 @@ elseif(WIN32)
#debug libboost_regex-${BOOST_DEBUG_POSTFIX}
#debug libboost_system-${BOOST_DEBUG_POSTFIX} debug libboost_thread-${BOOST_DEBUG_POSTFIX}
if(WITH_INTERNATIONAL)
- set(BOOST_LIBRARIES ${BOOST_LIBRARIES}
- optimized libboost_locale-${BOOST_POSTFIX})
+ set(BOOST_LIBRARIES ${BOOST_LIBRARIES} libboost_locale-${BOOST_POSTFIX})
+ #optimized libboost_locale-${BOOST_POSTFIX})
#debug libboost_locale-${BOOST_DEBUG_POSTFIX}
endif(WITH_INTERNATIONAL)
set(BOOST_DEFINITIONS "-DBOOST_ALL_NO_LIB")