]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
another ENABLE_V4L removal
authorJaroslav Kysela <perex@perex.cz>
Tue, 12 May 2015 19:07:07 +0000 (21:07 +0200)
committerJaroslav Kysela <perex@perex.cz>
Tue, 12 May 2015 19:15:37 +0000 (21:15 +0200)
src/main.c
src/webui/extjs.c
src/webui/webui.h

index 0b07e769b269c3044c5cf9e95958c2d4a89bdc0a..51cb4b64ddf92efa7cb351e4e159d0fa4d4de246 100644 (file)
@@ -142,7 +142,7 @@ const tvh_caps_t tvheadend_capabilities[] = {
 #if ENABLE_CWC || ENABLE_CAPMT || ENABLE_CONSTCW
   { "caclient", NULL },
 #endif
-#if ENABLE_V4L || ENABLE_LINUXDVB || ENABLE_SATIP_CLIENT || ENABLE_HDHOMERUN_CLIENT
+#if ENABLE_LINUXDVB || ENABLE_SATIP_CLIENT || ENABLE_HDHOMERUN_CLIENT
   { "tvadapters", NULL },
 #endif
 #if ENABLE_SATIP_CLIENT
index 00072677a4865ad600345b944806b3cabc6bb785..a4cf38c934d096eb9d3131864d357f488c14f2bd 100644 (file)
@@ -102,7 +102,7 @@ extjs_exec(htsbuf_queue_t *hq, const char *fmt, ...)
 }
 
 /**
- * PVR info, deliver info about the given PVR entry
+ * EXTJS root page
  */
 static int
 extjs_root(http_connection_t *hc, const char *remain, void *opaque)
@@ -799,8 +799,4 @@ extjs_start(void)
   http_path_add("/timeshift",        NULL, extjs_timeshift,        ACCESS_ADMIN);
 #endif
   http_path_add("/tvhlog",           NULL, extjs_tvhlog,           ACCESS_ADMIN);
-
-#if ENABLE_V4L
-  extjs_start_v4l();
-#endif
 }
index 819bb6a6f78b3ab79fd25f8c67f78428905e5d76..8cb200bb8b7f78e888d2923c8a347d32faa53c46 100644 (file)
@@ -39,10 +39,6 @@ int page_static_file(http_connection_t *hc, const char *remain, void *opaque);
 void extjs_start_dvb(void);
 #endif
 
-#if ENABLE_V4L
-void extjs_start_v4l(void);
-#endif
-
 void webui_api_init ( void );