From 2633339381e8963a729b62e76f313a76813bf4c2 Mon Sep 17 00:00:00 2001 From: Julio Pires Date: Wed, 1 Mar 2017 22:35:19 -0300 Subject: [PATCH] Fix boost_thread Dependency. --- examples/SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/SConstruct b/examples/SConstruct index 3a21ea02..84dbb403 100644 --- a/examples/SConstruct +++ b/examples/SConstruct @@ -92,7 +92,7 @@ prgs = [] for e, extralibs in examples: prgs.append(env.Program(e, LIBS=[ parameters, - 'boost_thread-mt', + 'boost_thread', 'boost_system', 'boost_program_options', 'msgpackc'] + extralibs))