mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
installer: check for jackdbus fixes #6229
This commit is contained in:
parent
f0231766d7
commit
35557fdebe
1 changed files with 9 additions and 5 deletions
|
|
@ -526,8 +526,15 @@ echo ""
|
||||||
|
|
||||||
JACK_INSTALLED="f"
|
JACK_INSTALLED="f"
|
||||||
|
|
||||||
if ! which jackd > /dev/null;
|
if which jackd > /dev/null; then
|
||||||
then
|
JACK_INSTALLED="t"
|
||||||
|
echo "Jack already present"
|
||||||
|
elif which jackdbus > /dev/null; then
|
||||||
|
echo ""
|
||||||
|
echo "jackdbus was found but not jackd. Jack version compatibility check cannot be performed."
|
||||||
|
echo ""
|
||||||
|
JACK_INSTALLED="i"
|
||||||
|
else
|
||||||
echo ""
|
echo ""
|
||||||
echo "The program Jack is missing from this system. Jack is a required component of $PGM_NAME."
|
echo "The program Jack is missing from this system. Jack is a required component of $PGM_NAME."
|
||||||
echo ""
|
echo ""
|
||||||
|
|
@ -547,9 +554,6 @@ then
|
||||||
JACK_INSTALLED="t"
|
JACK_INSTALLED="t"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
else
|
|
||||||
JACK_INSTALLED="t"
|
|
||||||
echo "Jack already present"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Check to see if Jack is new enough to operate correctly.
|
# Check to see if Jack is new enough to operate correctly.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue