From: José Fonseca Date: Mon, 29 Aug 2011 12:28:41 +0000 (+0100) Subject: libgl-gdi: Fix mingw-w64 build. X-Git-Tag: 062012170305~4823 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a68ba5e0f099e54cf16b6e33a0fc0a8db7455eed;p=profile%2Fivi%2Fmesa.git libgl-gdi: Fix mingw-w64 build. Mingw-w64 actually seems to be closer to MSVC in terms of .DEF parsing. --- diff --git a/src/gallium/targets/libgl-gdi/SConscript b/src/gallium/targets/libgl-gdi/SConscript index 49462a8..f6c8e8d 100644 --- a/src/gallium/targets/libgl-gdi/SConscript +++ b/src/gallium/targets/libgl-gdi/SConscript @@ -27,7 +27,9 @@ if env['llvm']: env.Append(CPPDEFINES = 'HAVE_LLVMPIPE') drivers += [llvmpipe] -if env['gcc']: +if env['gcc'] and 'w64' not in env['CC'].split('-'): + # DEF parser in certain versions of MinGW is busted, as does not behave as + # MSVC. mingw-w64 works fine. sources += ['#src/gallium/state_trackers/wgl/opengl32.mingw.def'] else: sources += ['#src/gallium/state_trackers/wgl/opengl32.def']