mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-12-16 15:25:53 +01:00
tvheadend: Update to latest trunk
Forward port 64bit time_t patch Disable warnings as errors Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
parent
ffba3bbe13
commit
66fdbc25c1
|
|
@ -146,12 +146,12 @@ Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|||
/* Failed */
|
||||
--- a/src/epggrab/module/opentv.c
|
||||
+++ b/src/epggrab/module/opentv.c
|
||||
@@ -486,7 +486,7 @@ opentv_parse_event_section_one
|
||||
@@ -497,7 +497,7 @@ opentv_parse_event_section_one
|
||||
1, &save, &changes);
|
||||
tvhdebug(LS_OPENTV, "find by time start %"PRItime_t " stop "
|
||||
"%"PRItime_t " eid %d = %p",
|
||||
- ev.start, ev.stop, ev.eid, ebc);
|
||||
+ (intmax_t)ev.start, (intmax_t)ev.stop, ev.eid, ebc);
|
||||
"%"PRItime_t " ch %"PRId64" eid %d = %p",
|
||||
- ev.start, ev.stop, ch->ch_number, ev.eid, ebc);
|
||||
+ (intmax_t)ev.start, (intmax_t)ev.stop, ch->ch_number, ev.eid, ebc);
|
||||
save |= epg_broadcast_set_dvb_eid(ebc, ev.eid, &changes);
|
||||
} else {
|
||||
ebc = epg_broadcast_find_by_eid(ch, ev.eid);
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ SRC_URI = "git://github.com/tvheadend/tvheadend.git;branch=master;protocol=https
|
|||
file://0001-adjust-for-64bit-time_t.patch \
|
||||
"
|
||||
|
||||
SRCREV = "ce09077056f9c6558c188d135cec3be85cc9c200"
|
||||
SRCREV = "9a51cea492e4a5579ca3ddf9233fecfa419de078"
|
||||
PV = "4.3+git${SRCPV}"
|
||||
PKGV = "4.3+git${GITPKGV}"
|
||||
|
||||
|
|
@ -26,5 +26,8 @@ EXTRA_OECONF += "--arch=${TARGET_ARCH} \
|
|||
--disable-dvbscan \
|
||||
"
|
||||
|
||||
EXTRA_OECONF:append:libc-musl = " --disable-execinfo"
|
||||
|
||||
EXTRA_OEMAKE = "CFLAGS_NO_WERROR=yes"
|
||||
CLEANBROKEN = "1"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user