Module: Mesa Branch: master Commit: 50370e483ba500fa3c65e8b67b915782a6f7fad0 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=50370e483ba500fa3c65e8b67b915782a6f7fad0
Author: Alexander von Gluck IV <[email protected]> Date: Sat Oct 19 23:31:50 2013 -0500 scons: Fix Haiku missing library * The softpipe add-on needs libtranslation due to the use of BTranslatorRoster Reviewed-by: Brian Paul <[email protected]> --- scons/gallium.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/scons/gallium.py b/scons/gallium.py index 5b20f3f..be3c3e7 100755 --- a/scons/gallium.py +++ b/scons/gallium.py @@ -507,7 +507,7 @@ def generate(env): if env['platform'] in ('linux',): libs += ['rt'] if env['platform'] in ('haiku'): - libs += ['root', 'be', 'network'] + libs += ['root', 'be', 'network', 'translation'] env.Append(LIBS = libs) # OpenMP _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
