aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Piggott <nick+work@piggott.eu>2015-11-22 20:14:20 +0000
committerNick Piggott <nick+work@piggott.eu>2015-11-22 20:14:20 +0000
commitf0089ebfe1c4aa5daa81251a4a5739c857c5f4f9 (patch)
treed11d061093239635c6175f3c2e5b9f7d67f58883
parente4e098a6f92742f5db0755a7f032f49a41fbde06 (diff)
downloadtoolame-dab-f0089ebfe1c4aa5daa81251a4a5739c857c5f4f9.tar.gz
toolame-dab-f0089ebfe1c4aa5daa81251a4a5739c857c5f4f9.tar.bz2
toolame-dab-f0089ebfe1c4aa5daa81251a4a5739c857c5f4f9.zip
Include required type libraries if jack not being included
If jack libraries are not being compiled into toolame, then inclusion of stddef.h and sys/types.h libraries is required to get vlc_input.h to compile
-rw-r--r--vlc_input.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/vlc_input.h b/vlc_input.h
index f2b78c6..a2ecefa 100644
--- a/vlc_input.h
+++ b/vlc_input.h
@@ -4,6 +4,8 @@
# if defined(VLC_INPUT)
#include <stdint.h>
+#include <stddef.h>
+#include <sys/types.h>
#include <vlc/vlc.h>