projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
54f95d2
)
graw-null: Try to fix MSVC linkage problems.
author
José Fonseca
<jfonseca@vmware.com>
Thu, 6 May 2010 20:06:10 +0000
(21:06 +0100)
committer
José Fonseca
<jfonseca@vmware.com>
Thu, 6 May 2010 20:06:53 +0000
(21:06 +0100)
src/gallium/targets/graw-null/SConscript
patch
|
blob
|
history
diff --git
a/src/gallium/targets/graw-null/SConscript
b/src/gallium/targets/graw-null/SConscript
index 99b6f5f425160ab4b172e810e300124b774d0a0a..2849d6667c27de5da68b1eafb706cfd664f33f0f 100644
(file)
--- a/
src/gallium/targets/graw-null/SConscript
+++ b/
src/gallium/targets/graw-null/SConscript
@@
-48,6
+48,9
@@
graw = env.SharedLibrary(
env.InstallSharedLibrary(graw, version=(1, 0))
-graw = env.FindIxes(graw, 'SHLIBPREFIX', 'SHLIBSUFFIX')
+if env['platform'] == 'windows':
+ graw = env.FindIxes(graw, 'LIBPREFIX', 'LIBSUFFIX')
+else:
+ graw = env.FindIxes(graw, 'SHLIBPREFIX', 'SHLIBSUFFIX')
Export('graw')