I'm backtracking a bit from C++ to C so I thought I'd try out the CSFML binding. I'm having a bit of a hard time translating the calls from SFML to CSFML, but searching the forums for code examples tends to get me solutions. One thing I haven't found is that the current CSFML binding is to SFML2.1. Not a problem I thought. I downloaded the precompiled version from the download section and almost got everything working.
I'm playing with it on linux mint 17.1 and the CSFML binding is making calls to GLEW 1.5 and asking for libGLEW.so.1.5, but my this distro only has version 1.10.0-3 available. I haven't yet looked into finding a lesser version on the libglew page mainly because going back and installing it may break a few things unless I took special effort to avoid that. libjpeg.so.62 is also being called for by CSFML. I can get that from the repository, but it removes the more current version of libjpeg from the system to do so, so again may break some things. My compiled version of SFML 2.2 for one.
I was wondering if the CSFML binding is going to be updated soon since 2.2 is out, but I know that 2.3 is probably coming soon so it may be a bit of trouble to re-create the binding only to just turn around and do it again when 2.3 hits.