Skip to content

Commit

Permalink
OSX: Add logic to handle FFTW removal from mythplugins in master/v33
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoyt4 committed Mar 4, 2022
1 parent 5cfcbb6 commit c25af9f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions OSX/build/macports_ansible/compileMythfrontendAnsible.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,11 @@ case $MYTHTV_VERS in
VERS=$(git ls-remote --tags git://github.com/MythTV/mythtv.git|tail -n 1)
VERS=${VERS##*/v}
VERS=$(echo $VERS|tr -dc '0-9')
EXTRA_MYTHPLUGIN_FLAG=""
;;
*)
*32*|*31*)
VERS=${MYTHTV_VERS: -2}
EXTRA_MYTHPLUGIN_FLAG="--enable-fftw"
;;
esac
ARCH=$(/usr/bin/arch)
Expand Down Expand Up @@ -432,15 +434,15 @@ if $BUILD_PLUGINS; then
--cxx=clang++ \
--enable-mythgame \
--enable-mythmusic \
--enable-fftw \
--enable-cdio \
--enable-mythnews \
--enable-mythweather \
--disable-mytharchive \
--disable-mythnetvision \
--disable-mythzoneminder \
--disable-mythzmserver \
--python=$PYTHON_BIN
--python=$PYTHON_BIN \
$EXTRA_MYTHPLUGIN_FLAG
echo "------------ Compiling Mythplugins ------------"
#compile plugins
$QMAKE_CMD mythplugins.pro
Expand Down

0 comments on commit c25af9f

Please sign in to comment.