WARNING 808 B

1234567891011121314151617181920212223
  1. WARNING
  2. =======
  3. Libpng 1.5 erroneously uses /MD when building debug DLL versions of libpng.
  4. It should use /MDd - you can change this under properties\C/C++\Code
  5. Generation\Runtime Library if you need to use the debug runtime for debug
  6. builds. This will be changed in libpng 1.6 but is currently retained for
  7. compatibility with older libpng 1.5 releases.
  8. The runtime library settings for each build are as follows:
  9. Release Debug
  10. DLL /MD /MD
  11. Library /MT /MTd
  12. The Visual Studio 2010 defaults for a Win32 DLL or Static Library project are
  13. as follows:
  14. Release Debug
  15. DLL /MD /MDd
  16. Static Library /MD /MDd
  17. Notice that by default static library builds use the DLL runtime, not the
  18. static library runtime.