Update JACK configure test to match r28241

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28242 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2009-01-04 11:52:37 +00:00
parent 4b5c66af76
commit b57cc610da
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -5242,7 +5242,7 @@ if test "$_jack" = auto ; then
cat > $TMPC << EOF
#include <jack/jack.h>
int main(void) { jack_client_new("test"); return 0; }
int main(void) { jack_client_open("test", JackUseExactName, NULL); return 0; }
EOF
if cc_check -ljack ; then
_libs_mplayer="$_libs_mplayer -ljack"