From dfb1502a2fffd1d3b828ec15fc9c767787833ade Mon Sep 17 00:00:00 2001 From: Jonathan Campbell Date: Sun, 2 Aug 2020 21:23:02 -0700 Subject: [PATCH] Mac OS X builds are crashing on users machines unless FFMPEG libavcodec is installed, and the app builder is apparently not doing its job, so disable FFMPEG for now --- build-macosx | 2 +- build-macosx-sdl2 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build-macosx b/build-macosx index 7dc3eae2f..9e6d404c3 100755 --- a/build-macosx +++ b/build-macosx @@ -45,6 +45,6 @@ export CXXFLAGS="$new$CXXFLAGS" # now compile ourself echo Compiling DOSBox-X chmod +x configure -./configure --enable-core-inline --enable-debug=heavy --prefix=/usr "$@" || exit 1 +./configure --enable-core-inline --enable-debug=heavy --prefix=/usr --disable-avcodec "$@" || exit 1 make -j3 || exit 1 diff --git a/build-macosx-sdl2 b/build-macosx-sdl2 index 18caf5622..60985e214 100755 --- a/build-macosx-sdl2 +++ b/build-macosx-sdl2 @@ -42,6 +42,6 @@ export CXXFLAGS="$new$CXXFLAGS" # now compile ourself echo Compiling DOSBox-X chmod +x configure -./configure --enable-core-inline --enable-debug=heavy --prefix=/usr --enable-sdl2 "$@" || exit 1 +./configure --enable-core-inline --enable-debug=heavy --prefix=/usr --enable-sdl2 --disable-avcodec "$@" || exit 1 make -j3 || exit 1