svn commit: r468931 - in head/audio/flite: . files

Jan Beich jbeich at FreeBSD.org
Thu May 3 14:47:58 UTC 2018


Author: jbeich
Date: Thu May  3 14:47:57 2018
New Revision: 468931
URL: https://svnweb.freebsd.org/changeset/ports/468931

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

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

Modified: head/audio/flite/Makefile
==============================================================================
--- head/audio/flite/Makefile	Thu May  3 14:16:40 2018	(r468930)
+++ head/audio/flite/Makefile	Thu May  3 14:47:57 2018	(r468931)
@@ -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

Added: head/audio/flite/files/patch-shlib_deps
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/audio/flite/files/patch-shlib_deps	Thu May  3 14:47:57 2018	(r468931)
@@ -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.$*


More information about the svn-ports-all mailing list