0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

Depend on bio2jack v0.3 as it fixes an important bug in JACK_Write() function patch by ismail donmez <kde@myrealbox.com>

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@13350 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
faust3 2004-09-15 16:01:34 +00:00
parent f75d9d87fd
commit 33980d6f5c

2
configure vendored
View File

@ -4277,7 +4277,7 @@ cat > $TMPC << EOF
int main(void) { JACK_Init(); return 0; }
EOF
# This test only checks the minor version number.
if ( ( test ! `bio2jack-config --version | cut -d '.' -f 2` -ge 2 ) ) ; then
if ( ( test ! `bio2jack-config --version | cut -d '.' -f 2` -ge 3 ) ) ; then
_jack=no;
elif test -z "$_bio2jackdir" ; then
cc_check -lbio2jack `pkg-config --libs --cflags jack` && ( "$TMPO" >> "$TMPLOG" 2>&1 ) && _jack=yes