Changes: - Update to tvheadend git master branch, commit 2efe90cdcf74fdc4179692d283cf46c85e1cf681 dated 2021-11-16 - Removed patches that are not needed anymore. - Add patch to ignore a ICONV test that runs at tvheadned startup. This test fails without "full language support" in OpenWrt, but tvheadend appears to run fine anyway. - Descrambling needs libdvbcsa, a BUILD_PATENTED package. Control Word clients now depend on descrambling. - Added options: - CCCAM client - RegEx library choice: POSIX (internal) / libpcre (more compatible) / libpcre2 - Optimize for speed (-O3, LTO) - FFMPEG is working again. Added options for transcoding, but commented-out. If anyone needs this, just uncomment, make menuconfig and build. - Sort everything in a more logical order Signed-off-by: Marius Dinu <m95d+git@psihoexpert.ro>
13 lines
421 B
Diff
13 lines
421 B
Diff
--- a/src/intlconv.c
|
|
+++ b/src/intlconv.c
|
|
@@ -36,9 +36,8 @@ intlconv_test( void )
|
|
(strcmp(s, "ZlutouckyKun") &&
|
|
strcmp(s, "Zlutouck'yKun") &&
|
|
strcmp(s, "?lu?ou?k?K??"))) {
|
|
- tvherror(LS_MAIN, "iconv() routine is not working properly (%s), aborting!", s);
|
|
+ tvherror(LS_MAIN, "iconv() routine is not working properly (%s)", s);
|
|
tvh_safe_usleep(2000000);
|
|
- abort();
|
|
}
|
|
free(s);
|
|
}
|