summaryrefslogtreecommitdiff
path: root/boost
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-09-06 15:10:19 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-09-07 09:10:39 -0400
commit0454b737d3cb33f47d2aef899ee1d22a2bf60412 (patch)
tree2be1fcc9572f4cadf44d3774b05df94089283205 /boost
parentaf4630416a33659e9d1257cea27cdae1b9a354d9 (diff)
Make boostthread windows only for now.
Not sure if unix needs it since most folks build with system boost there. Change-Id: I49d02a682e6658f6e3c5a6ada480903567d8c436
Diffstat (limited to 'boost')
-rw-r--r--boost/Module_boost.mk10
1 files changed, 9 insertions, 1 deletions
diff --git a/boost/Module_boost.mk b/boost/Module_boost.mk
index cca44eacf99e..bb5116321f84 100644
--- a/boost/Module_boost.mk
+++ b/boost/Module_boost.mk
@@ -13,7 +13,15 @@ ifeq ($(SYSTEM_BOOST),NO)
$(eval $(call gb_Module_add_targets,boost,\
StaticLibrary_boostdatetime \
+))
+
+ifeq ($(OS),WNT)
+$(eval $(call gb_Module_add_targets,boost,\
StaticLibrary_boostthread \
+))
+endif
+
+$(eval $(call gb_Module_add_targets,boost,\
UnpackedTarball_boost \
))
@@ -24,6 +32,6 @@ $(eval $(call gb_Module_add_targets,boost,\
))
endif
-endif
+endif # SYSTEM_BOOST
# vim: set noet sw=4 ts=4: