When I enable DVB I get a compile error on mythcdrom-linux.cpp, this is because the DVB settings.pro includes files from /usr/src/linux/includes
Including files directly from the kernel in Linux user space programs is no longer supported by the kernel developers.
dont INCLUDE your kernel sources. Copy or static link the dvb sources somewhere else. In my case i did
mkdir /usr/include/dvb/linux
ln -s /usr/src/linux/include/dvb /usr/include/dvb/linux/dvb
then set INCLUDE to /usr/include/dvb _______________________________________________ mythtv-dev mailing list [email protected] http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev
