diff options
author | José Fonseca <[email protected]> | 2011-08-29 13:35:49 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2011-08-30 09:42:01 +0100 |
commit | 3ab19bf82af8b62207e7e8585f275593d708a527 (patch) | |
tree | 3ee48c69acbc5cc88c4a3d8a08db991077cb539e /configs | |
parent | a68ba5e0f099e54cf16b6e33a0fc0a8db7455eed (diff) |
Remote *.mgw stuff.
Totally broken, and deprecated by scons.
Diffstat (limited to 'configs')
-rw-r--r-- | configs/config.mgw | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/configs/config.mgw b/configs/config.mgw deleted file mode 100644 index af74fdadcc8..00000000000 --- a/configs/config.mgw +++ /dev/null @@ -1,42 +0,0 @@ -# MinGW config include file updated for Mesa 7.0 -# -# Updated : by Heromyth, on 2007-7-21 -# Email : [email protected] -# Bugs : 1) All the default settings work fine. But the setting X86=1 can't work. -# The others havn't been tested yet. -# 2) The generated DLLs are *not* compatible with the ones built -# with the other compilers like VC8, especially for GLUT. -# 3) Although more tests are needed, it can be used individually! - -# The generated DLLs by MingW with STDCALL are not totally compatible -# with the ones linked by Microsoft's compilers. -# -# xxx_USING_STDCALL = 1 Compiling MESA with __stdcall. This is default! -# -# xxx_USING_STDCALL = 0 Compiling MESA without __stdcall. I like this:) -# - -# In fact, GL_USING_STDCALL and GLUT_USING_STDCALL can be -# different. For example: -# -# GL_USING_STDCALL = 0 -# GLUT_USING_STDCALL = 1 -# -# Suggested setting: -# -# ALL_USING_STDCALL = 1 -# -# That's default! -# - - -ALL_USING_STDCALL = 1 - - -ifeq ($(ALL_USING_STDCALL),1) - GL_USING_STDCALL = 1 - GLUT_USING_STDCALL = 1 -else - GL_USING_STDCALL = 0 - GLUT_USING_STDCALL = 0 -endif |