mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 17:40:27 +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.