haiku: Ensure correct libraries are referenced.

This commit is contained in:
Alexander von Gluck IV
2013-10-04 17:28:42 +00:00
parent a4144af400
commit 765baec8f7
2 changed files with 2 additions and 1 deletions

View File

@@ -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

View File

@@ -40,4 +40,3 @@ module = env.LoadableModule(
source = softpipe_sources,
)
env.Alias('softpipe-haiku', module)