From: Andre Noll Date: Sun, 1 Dec 2013 00:41:16 +0000 (+0100) Subject: configure.ac: Fix definition of recv_ldflags. X-Git-Tag: v0.5.1~5^2 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=c2cc7f881a1257f2253be419e9a9b239ede5e0de configure.ac: Fix definition of recv_ldflags. This cut+paste typo in the libflac section causes the build system to link para_recv against the wrong set of libraries. --- diff --git a/configure.ac b/configure.ac index 55b38e54..1d1d6e3c 100644 --- a/configure.ac +++ b/configure.ac @@ -970,7 +970,7 @@ if test "$have_flac" = "yes"; then play_ldflags="$play_ldflags $flac_libs -lFLAC" server_ldflags="$server_ldflags $flac_libs -lFLAC" afh_ldflags="$afh_ldflags $flac_libs -lFLAC" - recv_ldflags="$afh_ldflags $flac_libs -lFLAC" + recv_ldflags="$recv_ldflags $flac_libs -lFLAC" filters="$filters flacdec" audio_format_handlers="$audio_format_handlers flac" audiod_audio_formats="$audiod_audio_formats flac"