diff options
author | Jesse Buhagiar <jesse.buhagiar@student.rmit.edu.au> | 2020-02-10 23:03:53 +1100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-02-10 13:10:51 +0100 |
commit | 591870c7b428ed9e268f64607202611b75313ffa (patch) | |
tree | 15e4c4a211892d16c373b89add49783e02cce500 | |
parent | ccfee3e5732ba78fffa18f29d3d9b85cf9b522d6 (diff) | |
download | serenity-591870c7b428ed9e268f64607202611b75313ffa.zip |
Ports: Disable JACK for SDL2 in `configopts`
This is causing build errors for myself and a few other people.
This config option disables the SDL2 port from trying to compile
with the JACK audio server (which we don't need).
-rwxr-xr-x | Ports/SDL2/package.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ports/SDL2/package.sh b/Ports/SDL2/package.sh index 116c3acf5e..d7e803ba8d 100755 --- a/Ports/SDL2/package.sh +++ b/Ports/SDL2/package.sh @@ -4,7 +4,7 @@ version=serenity-git workdir=SDL-master-serenity useconfigure=true files="https://github.com/SerenityOS/SDL/archive/master-serenity.tar.gz SDL2-git.tar.gz" -configopts="-DCMAKE_TOOLCHAIN_FILE=$SERENITY_ROOT/Toolchain/CMakeToolchain.txt -DPULSEAUDIO=OFF" +configopts="-DCMAKE_TOOLCHAIN_FILE=$SERENITY_ROOT/Toolchain/CMakeToolchain.txt -DPULSEAUDIO=OFF -DJACK=OFF" configure() { run cmake $configopts |