From: Alexander von Gluck IV Date: Thu, 3 Oct 2013 02:14:20 +0000 (+0000) Subject: haiku: Correct Haiku softpipe library X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bc2fb19773908aa95f81c96ea4e22ff87167bfb4;p=mesa.git haiku: Correct Haiku softpipe library * Use LoadableModule vs SharedLibrary --- 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, )