summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/haiku-softpipe
diff options
context:
space:
mode:
authorAlexander von Gluck IV <kallisti5@unixzen.com>2013-10-03 02:14:20 +0000
committerAlexander von Gluck IV <kallisti5@unixzen.com>2013-10-04 18:20:09 -0500
commitbc2fb19773908aa95f81c96ea4e22ff87167bfb4 (patch)
treeadd10994b4726f43e1421fa51519f7c3afa7d342 /src/gallium/targets/haiku-softpipe
parent8730236d1a900c9512a9ef92c08034f0223bcf92 (diff)
downloadexternal_mesa3d-bc2fb19773908aa95f81c96ea4e22ff87167bfb4.zip
external_mesa3d-bc2fb19773908aa95f81c96ea4e22ff87167bfb4.tar.gz
external_mesa3d-bc2fb19773908aa95f81c96ea4e22ff87167bfb4.tar.bz2
haiku: Correct Haiku softpipe library
* Use LoadableModule vs SharedLibrary
Diffstat (limited to 'src/gallium/targets/haiku-softpipe')
-rw-r--r--src/gallium/targets/haiku-softpipe/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/targets/haiku-softpipe/SConscript b/src/gallium/targets/haiku-softpipe/SConscript
index 0a99976..6e12dc4 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,
)