ff91e7f3ec
Changes between 0.1.5 and 0.1.6: -------------------------------- * fixed a parsing bug due to outdated spec in ISO 639 language descriptor * fixed the use of uninitialized data when section_syntax_indicator=0 * fixed a parsing bug in the EBU teletext descriptor decoder * fixed the declaration of dvbpsi_DecodeTeletextDr * new example tool for checking an MPEG-2 TS file * fixed EIT discontinuities * new cat support * new PDC support descriptor 0x69 Changes between 0.1.4 and 0.1.5: -------------------------------- * Windows CE port * src/tables/eit*: EIT decoder (no generator yet) * src/tables/sdt*: SDT generator * 0x4d/0x4e (EIT) descriptors decoders * 0x52 (stream identifier) descriptor decoder * 0x55 (dvb parental rating) descriptor decoder * 0x56 (EBU teletext) descriptor decoder * fixed a segfault in the subtitles descriptor decoder * correctly handle duplicate packets * correctly handle TS packets containing multiple PSI sections Changes between 0.1.3 and 0.1.4: -------------------------------- * 0x59 (dvb subtitles) descriptor decoder * memory leak fix * fixed an unitialiazed pointer
20 lines
655 B
Makefile
20 lines
655 B
Makefile
# $NetBSD: buildlink3.mk,v 1.8 2009/02/27 22:38:16 wiz Exp $
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
|
|
LIBDVBPSI_BUILDLINK3_MK:= ${LIBDVBPSI_BUILDLINK3_MK}+
|
|
|
|
.if !empty(BUILDLINK_DEPTH:M+)
|
|
BUILDLINK_DEPENDS+= libdvbpsi
|
|
.endif
|
|
|
|
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nlibdvbpsi}
|
|
BUILDLINK_PACKAGES+= libdvbpsi
|
|
BUILDLINK_ORDER:= ${BUILDLINK_ORDER} ${BUILDLINK_DEPTH}libdvbpsi
|
|
|
|
.if !empty(LIBDVBPSI_BUILDLINK3_MK:M+)
|
|
BUILDLINK_API_DEPENDS.libdvbpsi+= libdvbpsi>=0.1.3
|
|
BUILDLINK_ABI_DEPENDS.libdvbpsi+= libdvbpsi>=0.1.6
|
|
BUILDLINK_PKGSRCDIR.libdvbpsi?= ../../multimedia/libdvbpsi
|
|
.endif # LIBDVBPSI_BUILDLINK3_MK
|
|
|
|
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}
|