diff options
author | Alexander von Gluck IV <[email protected]> | 2013-10-03 02:14:20 +0000 |
---|---|---|
committer | Alexander von Gluck IV <[email protected]> | 2013-10-04 18:20:09 -0500 |
commit | bc2fb19773908aa95f81c96ea4e22ff87167bfb4 (patch) | |
tree | add10994b4726f43e1421fa51519f7c3afa7d342 /src/gallium | |
parent | 8730236d1a900c9512a9ef92c08034f0223bcf92 (diff) |
haiku: Correct Haiku softpipe library
* Use LoadableModule vs SharedLibrary
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/targets/haiku-softpipe/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/targets/haiku-softpipe/SConscript b/src/gallium/targets/haiku-softpipe/SConscript index 0a99976aef5..6e12dc437a8 100644 --- a/src/gallium/targets/haiku-softpipe/SConscript +++ b/src/gallium/targets/haiku-softpipe/SConscript @@ -36,7 +36,7 @@ softpipe_sources = [ ] # libswpipe gets turned into "Software Renderer" by the haiku package system -module = env.SharedLibrary( +module = env.LoadableModule( target ='swpipe', source = softpipe_sources, ) |