pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/multimedia/libmatroska Fix linkage failure of libmatro...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/2ab51c3b670b
branches:  trunk
changeset: 645074:2ab51c3b670b
user:      pho <pho%pkgsrc.org@localhost>
date:      Thu Jan 22 14:43:19 2015 +0000

description:
Fix linkage failure of libmatroska due to missing -lebml flag.
This seems to be an actual issue only on non-ELF platforms.

Pull request sent and merged to the upstream:
https://github.com/Matroska-Org/libmatroska/pull/5

diffstat:

 multimedia/libmatroska/distinfo                  |   3 ++-
 multimedia/libmatroska/patches/patch-Makefile.in |  19 +++++++++++++++++++
 2 files changed, 21 insertions(+), 1 deletions(-)

diffs (34 lines):

diff -r d5065c44a5cf -r 2ab51c3b670b multimedia/libmatroska/distinfo
--- a/multimedia/libmatroska/distinfo   Thu Jan 22 12:57:27 2015 +0000
+++ b/multimedia/libmatroska/distinfo   Thu Jan 22 14:43:19 2015 +0000
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.24 2015/01/04 23:24:45 wiz Exp $
+$NetBSD: distinfo,v 1.25 2015/01/22 14:43:19 pho Exp $
 
 SHA1 (libmatroska-1.4.2.tar.bz2) = 546a761a763b2d1d15dbbccaa5495eb63dd87223
 RMD160 (libmatroska-1.4.2.tar.bz2) = 5db92e3c4a32cc5772cabfc85e4d3ecbf8870bdf
 Size (libmatroska-1.4.2.tar.bz2) = 611057 bytes
+SHA1 (patch-Makefile.in) = 404affca8eb5ae22c1c4b5854c1e8649564aed53
diff -r d5065c44a5cf -r 2ab51c3b670b multimedia/libmatroska/patches/patch-Makefile.in
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/multimedia/libmatroska/patches/patch-Makefile.in  Thu Jan 22 14:43:19 2015 +0000
@@ -0,0 +1,19 @@
+$NetBSD: patch-Makefile.in,v 1.1 2015/01/22 14:43:19 pho Exp $
+
+Fix linkage failure of libmatroska due to missing -lebml flag. This
+seems to be an actual issue only on non-ELF platforms.
+
+Pull request sent and merged to the upstream:
+https://github.com/Matroska-Org/libmatroska/pull/5
+
+--- Makefile.in.orig   2015-01-04 14:07:12.000000000 +0000
++++ Makefile.in
+@@ -386,7 +386,7 @@ libmatroska_la_SOURCES = \
+       src/KaxTracks.cpp \
+       src/KaxVersion.cpp
+ 
+-libmatroska_la_LDFLAGS = -version-info 6:0:0 -no-undefined
++libmatroska_la_LDFLAGS = $(EBML_LIBS) -version-info 6:0:0 -no-undefined
+ nobase_include_HEADERS = \
+       matroska/c/libmatroska.h \
+       matroska/c/libmatroska_t.h \



Home | Main Index | Thread Index | Old Index