Released v1.4.0. * Due to breaking ABI the soname version has been bumped to 5.0.0. * Default symbol visibility is now "hidden", reducing binary size. * Converted some things pointed out by cppcheck & clang-tidy to C++11. * Fixed a lot of issues pointed out by clang-tidy. * Added a function "ForceNoDefault" in the "EbmlElement" class. * Added a function "OverwriteData" in the "EbmlElement" class to complement the existing "OverwriteHead" function. * Fixed compilation on Windows wrt. winapifamily.h * Fixed compilation on Haiku. * A C++11 compliant compiler is now required. Several of its features are now used in the source. * EbmlElement::FindNextElement: fixed a buffer overflow on the stack by one byte when the first byte read had its upper four bits unset. * EbmlCrc32: added a explicit assignment operator with default implementation as an explicit copy constructor exists (implicit assignment operators are deprecated in such cases). * When reading binary elements with a size of 0, the element was skipped by libebml instead of returned to the calling function.
18 lines
481 B
Makefile
18 lines
481 B
Makefile
# $NetBSD: Makefile,v 1.48 2020/06/29 15:08:26 adam Exp $
|
|
|
|
DISTNAME= libebml-1.4.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://dl.matroska.org/downloads/libebml/
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MAINTAINER= salo@NetBSD.org
|
|
HOMEPAGE= https://matroska-org.github.io/libebml/
|
|
COMMENT= Extensible Binary Meta Language support library
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
USE_CMAKE= yes
|
|
USE_LANGUAGES= c c++
|
|
CMAKE_ARGS+= -DBUILD_SHARED_LIBS=YES
|
|
PKGCONFIG_OVERRIDE= libebml.pc.in
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|