Package: libsfml / 2.4.1+dfsg-3
Metadata
Package | Version | Patches format |
---|---|---|
libsfml | 2.4.1+dfsg-3 | 3.0 (quilt) |
Patch series
view the series filePatch | File delta | Description |
---|---|---|
02_hurd.patch | (download) |
cmake/Config.cmake |
6 6 + 0 - 0 ! |
add gnu/hurd support This patch adds GNU/Hurd support to SFML by pretending to be linux. The only thing which is not supported are joysticks - a dummy implementation has been added. |
04_remove googleapi css.patch | (download) |
doc/header.html.in |
1 0 + 1 - 0 ! |
remove commented out googleapi css in documentation There isn't actually any privacy breach here (since the line is commented out), but removing it shuts up lintian. |
05_build doc once.patch | (download) |
doc/CMakeLists.txt |
2 1 + 1 - 0 ! |
adjust build script to build documentation only once This patch removes the ALL option from the documentation build command so that it must be run manually with "make doc". This prevents the documentation being built twice (normal build + install phase). It also allows the documentation building to happen after the code building, which makes the logs much more readable in parallel builds. |
06_pkgconfig freebsd.patch | (download) |
CMakeLists.txt |
3 0 + 3 - 0 ! |
install freebsd pkgconfig files in lib/pkgconfig again |
07_fix crashing in sf Window setIcon.patch | (download) |
src/SFML/Window/Unix/WindowImplX11.cpp |
30 16 + 14 - 0 ! |
[patch] fixed xlib crashing in sf::window:seticon because it expects the element data type passed to XChangeProperty to be unsigned long (architecture dependent 32-bit or 64-bit) instead of sf::Uint32 (architecture independent 32-bit) (#1168). Also adjusted other occurrences of wrong types passed to XChangeProperty with format set to 32. [jcowgill: this is upstream PR https://github.com/SFML/SFML/pull/1171] |
08_fix transientcontext deadlocks.patch | (download) |
src/SFML/Window/GlContext.cpp |
206 145 + 61 - 0 ! |
[patch] replaced transientcontextlock implementation with a more elaborate one which relies on locking a single mutex and thus avoids lock order inversion. Fixes #1165. |