mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-10 00:04:06 -09:00
The CPE audiocoding:freeware_advanced_audio_decoder_2 hasn't received
any new CVEs since 2018 while faad2_project:faad2 received 9 new cves
[1].
See the full history in [2].
[1] https://nvd.nist.gov/vuln/detail/CVE-2023-38857
[2] https://security-tracker.debian.org/tracker/source-package/faad2
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
[Peter: set FAAD2_CPE_ID_VALID = YES for check-package]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
(cherry picked from commit ab03ba7396)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
22 lines
679 B
Makefile
22 lines
679 B
Makefile
################################################################################
|
|
#
|
|
# faad2
|
|
#
|
|
################################################################################
|
|
|
|
FAAD2_VERSION = 2.11.2
|
|
FAAD2_SITE = $(call github,knik0,faad2,$(FAAD2_VERSION))
|
|
FAAD2_LICENSE = GPL-2.0
|
|
FAAD2_LICENSE_FILES = COPYING
|
|
FAAD2_CPE_ID_VALID = YES
|
|
FAAD2_INSTALL_STAGING = YES
|
|
|
|
# faad2 contains assembly routines using ARM instructions not present in thumb1 mode:
|
|
# Error: selected processor does not support `smull r2,r3,r1,r0' in Thumb mode
|
|
# so force ARM mode
|
|
ifeq ($(BR2_ARM_INSTRUCTIONS_THUMB),y)
|
|
FAAD2_CONF_OPTS += -DCMAKE_C_FLAGS="$(TARGET_CFLAGS) -marm"
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|