]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Need to check for ENABLE_LINUXDVB
authorAndreas Öman <andreas@lonelycoder.com>
Tue, 4 Jan 2011 19:43:09 +0000 (20:43 +0100)
committerAndreas Öman <andreas@lonelycoder.com>
Tue, 4 Jan 2011 19:43:09 +0000 (20:43 +0100)
src/service.c

index cae3e690acdaacc0da8fdaf90c9c448af79a2864..68832e48c1830800713ac2fc9c8bf28c6dbdffeb 100644 (file)
@@ -1060,8 +1060,10 @@ service_get_signal_status(service_t *t, signal_status_t *status)
 {
   // get signal status from the service
   switch(t->s_type) {
+#if ENABLE_LINUXDVB
   case SERVICE_TYPE_DVB:
     return dvb_transport_get_signal_status(t, status);
+#endif
   default:
     return -1;
   }