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.
This commit is contained in:
wm4 2015-02-27 18:52:53 +01:00
parent 1eb533afb3
commit 64456488b3
1 changed files with 1 additions and 1 deletions

View File

@ -7,4 +7,4 @@
#include <linux/dvb/frontend.h> #include <linux/dvb/frontend.h>
#include <linux/dvb/video.h> #include <linux/dvb/video.h>
#include <linux/dvb/audio.h> #include <linux/dvb/audio.h>
int main(void) {return 0;} int main(void) {int a = NO_STREAM_ID_FILTER; return 0;}