diff options
author | Alexander von Gluck IV <kallisti5@unixzen.com> | 2013-10-04 17:28:42 +0000 |
---|---|---|
committer | Alexander von Gluck IV <kallisti5@unixzen.com> | 2013-10-04 18:20:09 -0500 |
commit | 765baec8f75a75a8e4f057baaa83883d30245d5c (patch) | |
tree | 3f51a65912675072407168564de4281b1d30092f /scons | |
parent | a4144af40003783093ac95d91340a55e40c82b26 (diff) |
haiku: Ensure correct libraries are referenced.
Diffstat (limited to 'scons')
-rwxr-xr-x | scons/gallium.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scons/gallium.py b/scons/gallium.py index 2e341e99f8..5b20f3ff68 100755 --- a/scons/gallium.py +++ b/scons/gallium.py @@ -506,6 +506,8 @@ def generate(env): libs += ['m', 'pthread', 'dl'] if env['platform'] in ('linux',): libs += ['rt'] + if env['platform'] in ('haiku'): + libs += ['root', 'be', 'network'] env.Append(LIBS = libs) # OpenMP |