Sorry for my late reply. I have checked new version of SFML 2 and it works perfect only in Release version in Debug build it crashes. Last time I did some research about this problem and managed to compile whole SFML 2.0 project.
Here's what I had to do in order to link SFML 2.0 with my project in both configurations. (BTW: if you need a project that shows this problem let me know i will try to spare some time to prepare a sample mini project)
1. FreetypeLib recompilation with /MD adn /MDd optionFrom what i saw in the latest SVN branch you are using the same freetype.lib for Release and Debug configs. This causes problem in Debug builds. There is a confilct between
MSVCRT.LIB and
MSVCRTD.LIB (as a result program craches ). I think you will have to include debug libs for FreetypeLib
2. JPEGLibHere is similar problem to previous one. You have to include debug version of lib
Check this site:
http://leptonica.org/vs2008doc/building-zlib-libjpeg-libpng.html. Here you can read about building this library. There is a problem because the library does not have Debug config so you have to add it yourself.
3. GLEWSimilar situation to FreetypeLib problem. You will have to include also Debug libs.
Hope this helps