mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 21:50:12 +01:00
haiku: Ensure correct libraries are referenced.
This commit is contained in:
parent
a4144af400
commit
765baec8f7
2 changed files with 2 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -40,4 +40,3 @@ module = env.LoadableModule(
|
|||
source = softpipe_sources,
|
||||
)
|
||||
|
||||
env.Alias('softpipe-haiku', module)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue