4ebd2fa277
Fixes: - CVE-2015-8271: The AMF3CD_AddProp function in amf.c in RTMPDump 2.4 allows remote RTMP Media servers to execute arbitrary code https://www.talosintelligence.com/reports/TALOS-2016-0067/ - CVE-2015-8272: RTMPDump 2.4 allows remote attackers to trigger a denial of service (NULL pointer dereference and process crash). https://www.talosintelligence.com/reports/TALOS-2016-0068/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
57 lines
1.5 KiB
Makefile
57 lines
1.5 KiB
Makefile
################################################################################
|
|
#
|
|
# rtmpdump
|
|
#
|
|
################################################################################
|
|
|
|
RTMPDUMP_VERSION = fa8646daeb19dfd12c181f7d19de708d623704c0
|
|
RTMPDUMP_SITE = git://git.ffmpeg.org/rtmpdump
|
|
RTMPDUMP_INSTALL_STAGING = YES
|
|
# Note that rtmpdump is GPL-2.0 but librtmp has its own license and since we only
|
|
# care about librtmp, it's LGPL-2.1+
|
|
RTMPDUMP_LICENSE = LGPL-2.1+
|
|
RTMPDUMP_LICENSE_FILES = librtmp/COPYING
|
|
RTMPDUMP_DEPENDENCIES = zlib
|
|
|
|
ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
|
RTMPDUMP_DEPENDENCIES += gnutls
|
|
RTMPDUMP_CRYPTO = GNUTLS
|
|
else ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
RTMPDUMP_DEPENDENCIES += openssl
|
|
RTMPDUMP_CRYPTO = OPENSSL
|
|
else
|
|
# no crypto
|
|
RTMPDUMP_CRYPTO =
|
|
endif
|
|
|
|
RTMPDUMP_CFLAGS = $(TARGET_CFLAGS)
|
|
|
|
ifneq ($(BR2_STATIC_LIBS),y)
|
|
RTMPDUMP_CFLAGS += -fPIC
|
|
else
|
|
RTMPDUMP_SHARED = "SHARED="
|
|
endif
|
|
|
|
RTMPDUMP_MAKE_FLAGS = \
|
|
CRYPTO=$(RTMPDUMP_CRYPTO) \
|
|
prefix=/usr \
|
|
$(RTMPDUMP_SHARED)
|
|
|
|
define RTMPDUMP_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) $(RTMPDUMP_MAKE_FLAGS) \
|
|
XCFLAGS="$(RTMPDUMP_CFLAGS)" \
|
|
XLDFLAGS="$(TARGET_LDFLAGS)" \
|
|
CROSS_COMPILE="$(TARGET_CROSS)" \
|
|
-C $(@D)/librtmp
|
|
endef
|
|
|
|
define RTMPDUMP_INSTALL_STAGING_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/librtmp install DESTDIR=$(STAGING_DIR) $(RTMPDUMP_MAKE_FLAGS)
|
|
endef
|
|
|
|
define RTMPDUMP_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/librtmp install DESTDIR=$(TARGET_DIR) $(RTMPDUMP_MAKE_FLAGS)
|
|
endef
|
|
|
|
$(eval $(generic-package))
|