369ff9a88f
The libmodplug release has not been updated for over 5 years. The git version contains many bug fixes, including for OOB accesses, unaligned reads and writes, etc. This git repository is the official home of libmodplug (by the original author), however a new release does not seem likely anytime soon: there are multiple open issues in the repository asking the author to tag a release, all without a response. Update buildroot to the current version of libmodplug from the official git repository. The build system changed from autotools to cmake since the last version. We add a _CPE_ID_VERSION variable pointing to the latest stable version, so that we don't get notified about all older CVEs that we are not affected by. Signed-off-by: Gleb Mazovetskiy <glex.spb@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
18 lines
630 B
Makefile
18 lines
630 B
Makefile
################################################################################
|
|
#
|
|
# libmodplug
|
|
#
|
|
################################################################################
|
|
|
|
LIBMODPLUG_VERSION = d1b97ed
|
|
LIBMODPLUG_SITE = $(call github,Konstanty,libmodplug,$(LIBMODPLUG_VERSION))
|
|
LIBMODPLUG_INSTALL_STAGING = YES
|
|
LIBMODPLUG_LICENSE = Public Domain
|
|
LIBMODPLUG_LICENSE_FILES = COPYING
|
|
LIBMODPLUG_CPE_ID_VENDOR = konstanty_bialkowski
|
|
# Our version is actually newer than this, but having this allows to
|
|
# not have reports about CVEs for versions older than 0.8.9.0.
|
|
LIBMODPLUG_CPE_ID_VERSION = 0.8.9.0
|
|
|
|
$(eval $(cmake-package))
|