diff options
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 2e341e99f83..5b20f3ff686 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 |