Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Jul 2013 18:30:17 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r323660 - in head/audio/libmp3splt: . files
Message-ID:  <201307251830.r6PIUH84040541@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Thu Jul 25 18:30:17 2013
New Revision: 323660
URL: http://svnweb.freebsd.org/changeset/ports/323660

Log:
  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

Added:
  head/audio/libmp3splt/files/patch-configure   (contents, props changed)
Modified:
  head/audio/libmp3splt/Makefile

Modified: head/audio/libmp3splt/Makefile
==============================================================================
--- head/audio/libmp3splt/Makefile	Thu Jul 25 18:29:27 2013	(r323659)
+++ head/audio/libmp3splt/Makefile	Thu Jul 25 18:30:17 2013	(r323660)
@@ -16,7 +16,6 @@ CONFIGURE_ARGS=	--disable-cutter --disab
 USES=	pathfix
 USE_LDCONFIG=	yes
 USE_AUTOTOOLS=	libltdl
-MAKE_JOBS_SAFE=	yes
 
 OPTIONS_MULTI=	plugin
 OPTIONS_MULTI_plugin=	MAD VORBIS

Added: head/audio/libmp3splt/files/patch-configure
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/libmp3splt/files/patch-configure	Thu Jul 25 18:30:17 2013	(r323660)
@@ -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"



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307251830.r6PIUH84040541>