Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 3 May 2018 14:48:40 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org
Subject:   svn commit: r468932 - in branches/2018Q2/audio/flite: . files
Message-ID:  <201805031448.w43EmeMW018154@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jbeich
Date: Thu May  3 14:48:40 2018
New Revision: 468932
URL: https://svnweb.freebsd.org/changeset/ports/468932

Log:
  MFH: r468931
  
  audio/flite: link shared libs against libm
  
  $ echo 'int main() {}' | cc -xc - -lflite -L/usr/local/lib
  /usr/local/lib/libflite.so: undefined reference to `log'
  /usr/local/lib/libflite.so: undefined reference to `fmod'
  /usr/local/lib/libflite.so: undefined reference to `exp'
  /usr/local/lib/libflite.so: undefined reference to `sin'
  /usr/local/lib/libflite.so: undefined reference to `pow'
  cc: error: linker command failed with exit code 1 (use -v to see invocation)
  
  Reported by:	mat (via ffmpeg)
  Obtained from:	Debian
  Approved by:	ports-secteam blanket

Added:
  branches/2018Q2/audio/flite/files/patch-shlib_deps
     - copied unchanged from r468931, head/audio/flite/files/patch-shlib_deps
Modified:
  branches/2018Q2/audio/flite/Makefile
Directory Properties:
  branches/2018Q2/   (props changed)

Modified: branches/2018Q2/audio/flite/Makefile
==============================================================================
--- branches/2018Q2/audio/flite/Makefile	Thu May  3 14:47:57 2018	(r468931)
+++ branches/2018Q2/audio/flite/Makefile	Thu May  3 14:48:40 2018	(r468932)
@@ -3,7 +3,7 @@
 
 PORTNAME=	flite
 PORTVERSION=	1.4
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	audio
 MASTER_SITES=	http://www.speech.cs.cmu.edu/flite/packed/${PORTNAME}-${PORTVERSION}/
 DISTNAME=	${PORTNAME}-${PORTVERSION}-release

Copied: branches/2018Q2/audio/flite/files/patch-shlib_deps (from r468931, head/audio/flite/files/patch-shlib_deps)
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ branches/2018Q2/audio/flite/files/patch-shlib_deps	Thu May  3 14:48:40 2018	(r468932, copy of r468931, head/audio/flite/files/patch-shlib_deps)
@@ -0,0 +1,14 @@
+Respect LDFLAGS in shared libraries
+https://bugs.debian.org/577335
+
+--- config/common_make_rules.orig	2009-07-30 14:52:56 UTC
++++ config/common_make_rules
+@@ -123,7 +123,7 @@ $(LIBDIR)/%.so: $(LIBDIR)/%.shared.a
+ 	@ rm -rf shared_os.$* && mkdir shared_os.$*
+ 	@ rm -f $@ $@.${PROJECT_VERSION} $@.${PROJECT_SHLIB_VERSION} 
+ 	@ (cd shared_os.$* && ar x ../$<)
+-	@ (cd shared_os.$* && $(CC) -shared -Wl,-soname,`basename $@`.${PROJECT_SHLIB_VERSION} -o ../$@.${PROJECT_VERSION} *.os)
++	@ (cd shared_os.$* && $(CC) -shared -Wl,-soname,`basename $@`.${PROJECT_SHLIB_VERSION} -o ../$@.${PROJECT_VERSION} *.os $(LDFLAGS))
+ 	@ (cd $(LIBDIR) && ln -s `basename $@.${PROJECT_VERSION}` `basename $@.${PROJECT_SHLIB_VERSION}` )
+ 	@ (cd $(LIBDIR) && ln -s `basename $@.${PROJECT_SHLIB_VERSION}` `basename $@` )
+ 	@ rm -rf shared_os.$*



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