summaryrefslogtreecommitdiffstats
path: root/waftools/fragments
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-02-27 18:52:53 +0100
committerwm4 <wm4@nowhere>2015-02-27 18:52:53 +0100
commit64456488b3b6bbbcbc4d3c96aab1b45cbd215439 (patch)
treeffb3624c359cf599f16503d74b2cd7fc6d6d0edd /waftools/fragments
parent1eb533afb379ac9addb9205bf25e32cdc9442e93 (diff)
downloadmpv-64456488b3b6bbbcbc4d3c96aab1b45cbd215439.tar.bz2
mpv-64456488b3b6bbbcbc4d3c96aab1b45cbd215439.tar.xz
build: improve DVB check
A use of NO_STREAM_ID_FILTER was added to the DVB code recently. While I have no idea what it's needed for, it makes mpv fail to compile on FreeBSD 10.1. Add it to the dvb configure check.
Diffstat (limited to 'waftools/fragments')
-rw-r--r--waftools/fragments/dvb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/waftools/fragments/dvb.c b/waftools/fragments/dvb.c
index 9deaa1eaab..f30350c75c 100644
--- a/waftools/fragments/dvb.c
+++ b/waftools/fragments/dvb.c
@@ -7,4 +7,4 @@
#include <linux/dvb/frontend.h>
#include <linux/dvb/video.h>
#include <linux/dvb/audio.h>
-int main(void) {return 0;}
+int main(void) {int a = NO_STREAM_ID_FILTER; return 0;}