diff options
author | jperkin <jperkin@pkgsrc.org> | 2013-02-22 20:42:40 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2013-02-22 20:42:40 +0000 |
commit | 86d9c6e6f53797f25937c4e8d951e3011ffe1b36 (patch) | |
tree | 0705ef0df034528f231ee30b3e1ccdec234975b6 /multimedia/totem-pl-parser | |
parent | 6d2dc52e2beb2076020a1f61cb954aa21230d3ee (diff) | |
download | pkgsrc-86d9c6e6f53797f25937c4e8d951e3011ffe1b36.tar.gz |
Fix build with non-GNU linkers.
Diffstat (limited to 'multimedia/totem-pl-parser')
-rw-r--r-- | multimedia/totem-pl-parser/distinfo | 3 | ||||
-rw-r--r-- | multimedia/totem-pl-parser/patches/patch-plparse_Makefile.in | 24 |
2 files changed, 26 insertions, 1 deletions
diff --git a/multimedia/totem-pl-parser/distinfo b/multimedia/totem-pl-parser/distinfo index 071bae9ff90..4802dabeb00 100644 --- a/multimedia/totem-pl-parser/distinfo +++ b/multimedia/totem-pl-parser/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.21 2012/10/30 20:05:51 drochner Exp $ +$NetBSD: distinfo,v 1.22 2013/02/22 20:42:40 jperkin Exp $ SHA1 (totem-pl-parser-3.4.3.tar.xz) = 167adb4657684fc971a1105ce6e823e0ea0931b7 RMD160 (totem-pl-parser-3.4.3.tar.xz) = 37b97d816310a4e93e993ba126700a353f2f5b8d Size (totem-pl-parser-3.4.3.tar.xz) = 1602000 bytes +SHA1 (patch-plparse_Makefile.in) = ca79faf9253f63cc5f478f5c19bf2c51e622cd4b diff --git a/multimedia/totem-pl-parser/patches/patch-plparse_Makefile.in b/multimedia/totem-pl-parser/patches/patch-plparse_Makefile.in new file mode 100644 index 00000000000..832fe190d6a --- /dev/null +++ b/multimedia/totem-pl-parser/patches/patch-plparse_Makefile.in @@ -0,0 +1,24 @@ +$NetBSD: patch-plparse_Makefile.in,v 1.1 2013/02/22 20:42:40 jperkin Exp $ + +Fix build with non-GNU linkers. + +--- plparse/Makefile.in.orig 2012-09-18 09:45:40.000000000 +0000 ++++ plparse/Makefile.in +@@ -515,8 +515,6 @@ libtotem_plparser_la_LIBADD = \ + + libtotem_plparser_la_LDFLAGS = \ + -version-info $(PLPARSER_LT_VERSION) \ +- -export-symbols $(srcdir)/plparser.symbols \ +- -no-undefined \ + $(CODE_COVERAGE_LDFLAGS) \ + $(AM_LDFLAGS) + +@@ -567,8 +565,6 @@ libtotem_plparser_mini_la_LIBADD = \ + + libtotem_plparser_mini_la_LDFLAGS = \ + -version-info $(PLPARSER_LT_VERSION) \ +- -export-symbols $(srcdir)/plparser-mini.symbols \ +- -no-undefined \ + $(CODE_COVERAGE_LDFLAGS) \ + $(AM_LDFLAGS) + |