aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/ModplugDecoderPlugin.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-09-26 17:14:25 +0200
committerMax Kellermann <max@duempel.org>2013-09-26 17:27:35 +0200
commitd7b0073ce1323065415808bf1bf57a8249ef86ff (patch)
treebc1a99c36541b64917141a7c1f6042daac332cf8 /src/decoder/ModplugDecoderPlugin.cxx
parent585b68d2ae024a9b0e567d5bb113231d3cdcb346 (diff)
downloadmpd-d7b0073ce1323065415808bf1bf57a8249ef86ff.tar.gz
mpd-d7b0073ce1323065415808bf1bf57a8249ef86ff.tar.xz
mpd-d7b0073ce1323065415808bf1bf57a8249ef86ff.zip
decoder/modplug: fix include directory
Since Debian package 1:0.8.8.4-4, the pkg-config file does not contain -I/usr/include/libmodplug anymore, and we need to add the "libmodplug/" prefix to the #include line.
Diffstat (limited to '')
-rw-r--r--src/decoder/ModplugDecoderPlugin.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/decoder/ModplugDecoderPlugin.cxx b/src/decoder/ModplugDecoderPlugin.cxx
index b5c02507a..d6840300c 100644
--- a/src/decoder/ModplugDecoderPlugin.cxx
+++ b/src/decoder/ModplugDecoderPlugin.cxx
@@ -23,8 +23,10 @@
#include "InputStream.hxx"
#include "tag/TagHandler.hxx"
+#include <libmodplug/modplug.h>
+
#include <glib.h>
-#include <modplug.h>
+
#include <assert.h>
#undef G_LOG_DOMAIN