Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.mgw 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # MinGW config include file updated for Mesa 7.0
  2. #
  3. # Updated : by Heromyth, on 2007-7-21
  4. # Email : zxpmyth@yahoo.com.cn
  5. # Bugs : 1) All the default settings work fine. But the setting X86=1 can't work.
  6. # The others havn't been tested yet.
  7. # 2) The generated DLLs are *not* compatible with the ones built
  8. # with the other compilers like VC8, especially for GLUT.
  9. # 3) Although more tests are needed, it can be used individually!
  10. # The generated DLLs by MingW with STDCALL are not totally compatible
  11. # with the ones linked by Microsoft's compilers.
  12. #
  13. # xxx_USING_STDCALL = 1 Compiling MESA with __stdcall. This is default!
  14. #
  15. # xxx_USING_STDCALL = 0 Compiling MESA without __stdcall. I like this:)
  16. #
  17. # In fact, GL_USING_STDCALL and GLUT_USING_STDCALL can be
  18. # different. For example:
  19. #
  20. # GL_USING_STDCALL = 0
  21. # GLUT_USING_STDCALL = 1
  22. #
  23. # Suggested setting:
  24. #
  25. # ALL_USING_STDCALL = 1
  26. #
  27. # That's default!
  28. #
  29. ALL_USING_STDCALL = 1
  30. ifeq ($(ALL_USING_STDCALL),1)
  31. GL_USING_STDCALL = 1
  32. GLUT_USING_STDCALL = 1
  33. else
  34. GL_USING_STDCALL = 0
  35. GLUT_USING_STDCALL = 0
  36. endif