From 9466bf5f2b7e63d2e93549d239a7e0b0060ce635 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Sun, 1 Feb 2015 18:14:08 +0100 Subject: [PATCH] build: libmatroska needs to link against libebml The library uses symbols from libebml, and so should link to it. --- Makefile.am | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 19d7d4a..c6a728d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -26,7 +26,8 @@ libmatroska_la_SOURCES = \ src/KaxSemantic.cpp \ src/KaxTracks.cpp \ src/KaxVersion.cpp -libmatroska_la_LDFLAGS = $(EBML_LIBS) -version-info 6:0:0 -no-undefined +libmatroska_la_LDFLAGS = -version-info 6:0:0 -no-undefined +libmatroska_la_LIBADD = $(EBML_LIBS) nobase_include_HEADERS = \ matroska/c/libmatroska.h \