Date: Sat, 31 Mar 2018 12:09:10 +0000 (UTC) From: Roman Bogorodskiy <novel@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466044 - head/audio/easytag/files Message-ID: <201803311209.w2VC9AfT030864@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: novel Date: Sat Mar 31 12:09:10 2018 New Revision: 466044 URL: https://svnweb.freebsd.org/changeset/ports/466044 Log: audio/easytag: fix build with lld When detecting libid3, make sure to add -lstdc++ to its LIBS, otherwise with lld easytag's configure script fails to run its test binaries it complies to detect libid3 and fails. PR: 226970 Reported by: emaste Added: head/audio/easytag/files/patch-configure (contents, props changed) Added: head/audio/easytag/files/patch-configure ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/easytag/files/patch-configure Sat Mar 31 12:09:10 2018 (r466044) @@ -0,0 +1,11 @@ +--- configure.orig 2018-03-31 02:06:04 UTC ++++ configure +@@ -18871,7 +18871,7 @@ return ID3Tag_Link (); + return 0; + } + _ACEOF +-for ac_lib in '' "id3" "id3 -lstdc++" "id3 -lz" "id3 -lz -lstdc++"; do ++for ac_lib in "id3 -lstdc++" "id3 -lz -lstdc++"; do + if test -z "$ac_lib"; then + ac_res="none required" + else
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803311209.w2VC9AfT030864>