diff options
author | Dimitris Zlatanidis <d.zlatanidis@gmail.com> | 2014-04-10 12:47:44 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2014-04-10 12:47:44 +0700 |
commit | 2863a225a93910adcca3651b4d9b39f932cd6e37 (patch) | |
tree | 32640fc2644ae7670c02043688f22e1087880983 /games/glob2/SConstruct_boost.patch | |
parent | 2032348abad610cf7ef0b2521044a6732f2344e9 (diff) |
games/glob2: Added (RTS game).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/glob2/SConstruct_boost.patch')
-rw-r--r-- | games/glob2/SConstruct_boost.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/games/glob2/SConstruct_boost.patch b/games/glob2/SConstruct_boost.patch new file mode 100644 index 000000000000..0867016d6f1b --- /dev/null +++ b/games/glob2/SConstruct_boost.patch @@ -0,0 +1,17 @@ +--- glob2-0.9.4.4/SConstruct.original 2014-04-09 06:25:12.710804438 +0300 ++++ glob2-0.9.4.4/SConstruct 2014-04-09 06:47:08.010360930 +0300 +@@ -109,6 +109,14 @@ + else: + print "Could not find libz or zlib1.dll" + missing.append("zlib") ++ ++ boost_system = '' ++ if conf.CheckLib("boost_system"): ++ boost_system="boost_system" ++ else: ++ print "Could not find libboost_system" ++ missing.append("libboost_system") ++ env.Append(LIBS=[boost_system]) + + boost_thread = '' + if conf.CheckLib("boost_thread") and conf.CheckCXXHeader("boost/thread/thread.hpp"): |