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

Fix external FLAC detection on Mandrake.

Patch by G:otz Waschk <waschk at informatik dot uni-rostock dot de>


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11025 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
lumag 2003-10-06 07:21:01 +00:00
parent 8644846c04
commit becb080bd6

4
configure vendored
View File

@ -5267,7 +5267,7 @@ int main()
}
EOF
_flac=no
if cc_check -lFLAC ; then
if cc_check -lFLAC -lm ; then
_flac=external
fi
else
@ -5280,7 +5280,7 @@ if test "$_flac" = external ; then
#Still use dither.c & replay_gain from libmpflac
_def_mpflac='#undef USE_MPFLAC_DECODER'
_mpflac='process'
_ld_flac='-lFLAC -Llibmpflac -lmpflac'
_ld_flac='-lFLAC -lm -Llibmpflac -lmpflac'
_codecmodules="flac(external) $_codecmodules"
echores "yes (using external libFLAC)"
else