mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 01:41:59 -05:00
Ports: Fix SDL2 port trying to build against PulseAudio for some reason.
I didn't look into why, but for some reason the SDL2 cmake build system thinks it should build against PulseAudio which we definitely don't have. So just tell it explicitly not to do that. Fixes #265.
This commit is contained in:
parent
eb4c42bfa8
commit
2daf89e2f7
2 changed files with 2 additions and 1 deletions
|
@ -68,7 +68,7 @@ run_patch() {
|
|||
}
|
||||
|
||||
run_configure_cmake() {
|
||||
run_command cmake -DCMAKE_TOOLCHAIN_FILE="$SERENITY_ROOT/Toolchain/CMakeToolchain.txt" .
|
||||
run_command cmake -DCMAKE_TOOLCHAIN_FILE="$SERENITY_ROOT/Toolchain/CMakeToolchain.txt" $CMAKEOPTS .
|
||||
}
|
||||
|
||||
run_configure_autotools() {
|
||||
|
|
|
@ -4,6 +4,7 @@ fetch() {
|
|||
run_fetch_git "https://github.com/SerenityOS/SDL"
|
||||
}
|
||||
configure() {
|
||||
CMAKEOPTS="-DPULSEAUDIO=OFF"
|
||||
run_configure_cmake
|
||||
}
|
||||
build() {
|
||||
|
|
Loading…
Reference in a new issue