1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-30 03:57:45 +00:00

Ports: Upgrade to FFmpeg 5.0 release; enable SDL and networking

This commit is contained in:
Peter Ross 2022-03-01 19:50:19 +11:00 committed by Andreas Kling
parent 34108547b6
commit 451fee8fd7
4 changed files with 31 additions and 7 deletions

View file

@ -0,0 +1,9 @@
# 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.