From: José Fonseca Date: Thu, 6 May 2010 20:06:10 +0000 (+0100) Subject: graw-null: Try to fix MSVC linkage problems. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f63672c9ab51e6855c2a6bedc6d23d7cd23d329a;p=profile%2Fivi%2Fmesa.git graw-null: Try to fix MSVC linkage problems. --- diff --git a/src/gallium/targets/graw-null/SConscript b/src/gallium/targets/graw-null/SConscript index 99b6f5f..2849d66 100644 --- 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')