1 From 6ef588b2c230eae15f7f2563eca9d5f40c78d1d0 Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?J=C3=B6rg=20Krause?= <joerg.krause@embedded.rocks>
3 Date: Wed, 11 Jan 2017 21:06:37 +0100
4 Subject: [PATCH] Makefile.am: fix linking xiph with ogg
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
9 The internal static xiph library needs to link with libogg. Otherwise
10 building mpd will fail:
13 /mips-linux-gnu/bin/ld: libxiph.a(libxiph_a-OggVisitor.o): undefined
14 reference to symbol 'ogg_stream_packetout'
17 Upstream status: Pending
18 http://mailman.blarg.de/pipermail/mpd-devel/2017-January/000594.html
20 Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>
23 1 file changed, 2 insertions(+), 1 deletion(-)
25 diff --git a/Makefile.am b/Makefile.am
26 index e0202b0cc..9030e68fb 100644
29 @@ -614,7 +614,8 @@ libxiph_a_SOURCES += \
30 src/lib/xiph/OggStreamState.hxx
33 -XIPH_LIBS = libxiph.a
34 +XIPH_LIBS = libxiph.a \