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

Remove pointless printf call in libmp3lame test.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30221 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2010-01-04 22:29:55 +00:00
parent ff44ac1a3c
commit 22298a8e57

2
configure vendored
View File

@ -7489,7 +7489,7 @@ if test "$_mp3lame" = auto ; then
cat > $TMPC <<EOF
#include <lame/lame.h>
int main(void) { lame_version_t lv; (void) lame_init();
get_lame_version_numerical(&lv); printf("%d%d\n",lv.major,lv.minor);
get_lame_version_numerical(&lv);
return 0; }
EOF
cc_check -lmp3lame $_ld_lm && _mp3lame=yes