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
This commit is contained in:
Roman Bogorodskiy 2018-03-31 12:09:10 +00:00
parent c9a6ed3a28
commit ff47063e2d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=466044

View File

@ -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