Project

General

Profile

aud-configure.diff

Brad Smith, August 24, 2012 10:27

View differences:

configure.ac
882 882
)
883 883

  
884 884
if test "x$enable_filewriter_mp3" = "xyes"; then
885
   AC_CHECK_LIB(mp3lame -lm, lame_get_id3v2_tag, [have_lame=yes], [have_lame=no])
885
   AC_CHECK_LIB(mp3lame, lame_get_id3v2_tag, [have_lame=yes], [have_lame=no], [-lm])
886 886
   if test "x$have_lame" = "xyes"; then
887 887
      AC_DEFINE(FILEWRITER_MP3, 1, [Define if MP3 output part should be built])
888 888
	  FILEWRITER_LIBS="$FILEWRITER_LIBS -lmp3lame"