mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 06:58:11 +00:00
.. | ||
errno-is-not-valid-during-cpp.patch | ||
ReadMe.md |
Patches for FFmpeg on SerenityOS
errno-is-not-valid-during-cpp.patch
FFmpeg performs a preprocessor-time test on errno values. This test does not work on SerenityOS because our errno values are described by an enum, and therefore are only available at compile time.
The patch removes the preprocessor-time test.