mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
audio/libmp3splt: Fix configure script test for modern binutils
The id3tag library will fail to be detected on systems using ld from recent binutils. This is because libid3tag is linked without zlib also being linked directly, and be default it doesn't search libraries linked to linked libraries. The configure script is patched with "-lz" to fix. Also remove redundant MAKE_JOBS_SAFE while we are here. Approved by: bapt (mentor), maintainer
This commit is contained in:
parent
e3d11f460c
commit
ab73db34fb
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=323660
@ -16,7 +16,6 @@ CONFIGURE_ARGS= --disable-cutter --disable-doxygen_doc
|
||||
USES= pathfix
|
||||
USE_LDCONFIG= yes
|
||||
USE_AUTOTOOLS= libltdl
|
||||
MAKE_JOBS_SAFE= yes
|
||||
|
||||
OPTIONS_MULTI= plugin
|
||||
OPTIONS_MULTI_plugin= MAD VORBIS
|
||||
|
11
audio/libmp3splt/files/patch-configure
Normal file
11
audio/libmp3splt/files/patch-configure
Normal file
@ -0,0 +1,11 @@
|
||||
--- configure.orig 2013-07-25 15:33:15.000000000 +0000
|
||||
+++ configure
|
||||
@@ -15422,7 +15422,7 @@ elif test "x$prefix" != "xNONE"; then
|
||||
ID3_LIBS="-L$prefix/lib"
|
||||
fi
|
||||
|
||||
-ID3_LIBS="$ID3_LIBS -lid3tag"
|
||||
+ID3_LIBS="$ID3_LIBS -lid3tag -lz"
|
||||
|
||||
if test "x$id3_includes" != "x"; then
|
||||
ID3_CFLAGS="-I$id3_includes"
|
Loading…
Reference in New Issue
Block a user