aboutsummaryrefslogtreecommitdiff
path: root/audio/easytag
diff options
context:
space:
mode:
authorRoman Bogorodskiy <novel@FreeBSD.org>2018-03-31 12:09:10 +0000
committerRoman Bogorodskiy <novel@FreeBSD.org>2018-03-31 12:09:10 +0000
commitff47063e2d322b0852c197556ea118a64332baa5 (patch)
tree3084423dd546c75b19eaf8f277aaec3d00dc62e8 /audio/easytag
parentc9a6ed3a2821e0063581969993496ba1fca74dbd (diff)
downloadports-ff47063e2d322b0852c197556ea118a64332baa5.tar.gz
ports-ff47063e2d322b0852c197556ea118a64332baa5.zip
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
Notes
Notes: svn path=/head/; revision=466044
Diffstat (limited to 'audio/easytag')
-rw-r--r--audio/easytag/files/patch-configure11
1 files changed, 11 insertions, 0 deletions
diff --git a/audio/easytag/files/patch-configure b/audio/easytag/files/patch-configure
new file mode 100644
index 000000000000..2acb751e7ceb
--- /dev/null
+++ b/audio/easytag/files/patch-configure
@@ -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