[vlc-commits] NSSpeechSynthesizer: Add missing $(AM_LDFLAGS)

Marvin Scholz git at videolan.org
Mon Feb 27 17:15:53 CET 2017


vlc | branch: master | Marvin Scholz <epirat07 at gmail.com> | Mon Feb 27 17:15:19 2017 +0100| [3ac5f1f5b696ed1c811d85208a80b10d3ffefa6e] | committer: Marvin Scholz

NSSpeechSynthesizer: Add missing $(AM_LDFLAGS)

This prevents that a versioned dylib is built, as it is unwanted for
modules.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=3ac5f1f5b696ed1c811d85208a80b10d3ffefa6e
---

 modules/text_renderer/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/text_renderer/Makefile.am b/modules/text_renderer/Makefile.am
index ac09caa..e64bd46 100644
--- a/modules/text_renderer/Makefile.am
+++ b/modules/text_renderer/Makefile.am
@@ -58,7 +58,7 @@ text_LTLIBRARIES += $(LTLIBsvg)
 
 # OS X TTS
 libnsspeechsynthesizer_plugin_la_SOURCES = text_renderer/nsspeechsynthesizer.m
-libnsspeechsynthesizer_plugin_la_LDFLAGS = -Wl,-framework,Cocoa
+libnsspeechsynthesizer_plugin_la_LDFLAGS = $(AM_LDFLAGS) -Wl,-framework,Cocoa
 if HAVE_OSX
 text_LTLIBRARIES += libnsspeechsynthesizer_plugin.la
 endif



More information about the vlc-commits mailing list