4253ad093e
Changes since the v0.10 release: - Fix two potential integer overflows. (These were not security-critical unless the compiler took the opportunity provided by the undefined behavior to format your hard drive.) - Allow JPEGs in METADATA_BLOCK_PICTURE tags to include EXIF data. - A few warning fixes for gcc 8. - Make opus_tags_copy return OP_EFAULT on failure instead of returning success. - Various integration and testing environment improvements. This release is backward-compatible with the previous release. We recommend all users upgrade. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
26 lines
704 B
Makefile
26 lines
704 B
Makefile
################################################################################
|
|
#
|
|
# opusfile
|
|
#
|
|
################################################################################
|
|
|
|
OPUSFILE_VERSION = 0.11
|
|
OPUSFILE_SITE = https://downloads.xiph.org/releases/opus
|
|
OPUSFILE_DEPENDENCIES = host-pkgconf libogg opus
|
|
OPUSFILE_LICENSE = BSD-3-Clause
|
|
OPUSFILE_LICENSE_FILES = COPYING
|
|
OPUSFILE_INSTALL_STAGING = YES
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
OPUSFILE_DEPENDENCIES += openssl
|
|
else
|
|
OPUSFILE_CONF_OPTS += --disable-http
|
|
endif
|
|
|
|
# Use the same as opus package since it's a dep and we can't mix
|
|
ifeq ($(BR2_PACKAGE_OPUS_FIXED_POINT),y)
|
|
OPUSFILE_CONF_OPTS += --enable-fixed-point
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|