svn commit: r466044 - head/audio/easytag/files
Roman Bogorodskiy
novel at FreeBSD.org
Sat Mar 31 12:09:11 UTC 2018
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
More information about the svn-ports-head
mailing list