Commit 21fd2064 authored by Jörg Krause's avatar Jörg Krause Committed by Max Kellermann

Makefile.am: fix linking xiph with ogg

The internal static xiph library needs to link with libogg. Otherwise building mpd will fail: ``` /mips-linux-gnu/bin/ld: libxiph.a(libxiph_a-OggVisitor.o): undefined reference to symbol 'ogg_stream_packetout' ``` Signed-off-by: 's avatarJörg Krause <joerg.krause@embedded.rocks>
parent dcbab8e3
......@@ -615,7 +615,8 @@ libxiph_a_SOURCES += \
src/lib/xiph/OggStreamState.hxx
endif
XIPH_LIBS = libxiph.a
XIPH_LIBS = libxiph.a \
$(OGG_LIBS)
endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment