# HG changeset patch # User lumag # Date 1065424861 0 # Node ID 2b5d77008400ec1d3d02dbd2aa5dadb7689101fa # Parent f68acf47c3ed43d7da538e5809431315f0372918 Fix external FLAC detection on Mandrake. Patch by G:otz Waschk diff -r f68acf47c3ed -r 2b5d77008400 configure --- a/configure Sun Oct 05 21:17:05 2003 +0000 +++ b/configure Mon Oct 06 07:21:01 2003 +0000 @@ -5267,7 +5267,7 @@ } EOF _flac=no - if cc_check -lFLAC ; then + if cc_check -lFLAC -lm ; then _flac=external fi else @@ -5280,7 +5280,7 @@ #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