WARNING 851 B

12345678910111213141516171819202122232425262728
  1. WARNING
  2. =======
  3. Libpng 1.6 does not use the default run-time library when building static
  4. library builds of libpng; instead of the shared DLL runtime it uses a static
  5. runtime. If you need to change this make sure to change the setting on all the
  6. relevant projects:
  7. libpng
  8. zlib
  9. all the test programs
  10. The runtime library settings for each build are as follows:
  11. Release Debug
  12. DLL /MD /MDd
  13. Library /MT /MTd
  14. NOTICE that libpng 1.5 erroneously used /MD for Debug DLL builds; if you used
  15. the debug builds in your app and you changed your app to use /MD you will need
  16. to change it to /MDd for libpng 1.6.
  17. The Visual Studio 2010 defaults for a Win32 DLL or Static Library project are
  18. as follows:
  19. Release Debug
  20. DLL /MD /MDd
  21. Static Library /MD /MDd