Mercurial > mplayer.hg
comparison configure @ 16668:de87e6b2a4c7
Shut up jack pkg-config.
author | diego |
---|---|
date | Tue, 04 Oct 2005 22:47:13 +0000 |
parents | 338f5c64434b |
children | d229c8595328 |
comparison
equal
deleted
inserted
replaced
16667:27a2bc4aad72 | 16668:de87e6b2a4c7 |
---|---|
4629 #include <jack/jack.h> | 4629 #include <jack/jack.h> |
4630 int main(void) { jack_client_new("test"); return 0; } | 4630 int main(void) { jack_client_new("test"); return 0; } |
4631 EOF | 4631 EOF |
4632 if cc_check -ljack ; then | 4632 if cc_check -ljack ; then |
4633 _ld_jack="-ljack" | 4633 _ld_jack="-ljack" |
4634 elif cc_check `pkg-config --libs --cflags jack` ; then | 4634 elif cc_check `pkg-config --libs --cflags --silence-errors jack` ; then |
4635 _ld_jack="`pkg-config --libs jack`" | 4635 _ld_jack="`pkg-config --libs jack`" |
4636 _inc_jack="`pkg-config --cflags jack`" | 4636 _inc_jack="`pkg-config --cflags jack`" |
4637 else | 4637 else |
4638 _jack=no | 4638 _jack=no |
4639 fi | 4639 fi |