pkgsrc/audio/faac/Makefile
nia 136f9f9cc9 faac: Update to 1.30
Changes:

[ Robert Kausch ]

    Fix Joint Stereo coding

[ Krzysztof Nikiel ]

    Code cleanup and compilation fixes
    Fix endianness conversion functions

[ Takashi Yoshi ]

    Fix compilation with GCC < 4.6
    Fix compilation on big endian systems

[ Fabian Greffrath ]

    Fix division by zero errors
    Fix compilation with GCC <= 4.7.3
    Change pointer type for proper arithmetics
    Fix logic error in compiler detection
    Revert back to some more generic SSE2 code
    Fix a memory leak
    Fix some cppcheck warnings in the Cfaac code
    Check index ranges before dereferencing book arrays (CVE-2018-19886)
    Clean up stdint.h header inclusions
    Consistently use stdint.h types

[ Michael Fink ]

    Update Visual Studio 2017 projects
    Add stdint.h header inclusions
    Port over ac2ver tool from faad2 to generate PACKAGE_VERSION
    when compiling with Visual Studio

[ Eugène Filin ]

    Memory allocations redefined
2019-11-09 11:48:35 +00:00

21 lines
541 B
Makefile

# $NetBSD: Makefile,v 1.18 2019/11/09 11:48:35 nia Exp $
DISTNAME= faac-1.30
CATEGORIES= audio
MASTER_SITES= ${MASTER_SITE_GITHUB:=knik0/}
GITHUB_TAG= ${PKGVERSION_NOREV:S/./_/g}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://github.com/knik0/faac
COMMENT= AAC audio encoder
LICENSE= gnu-lgpl-v2
USE_LIBTOOL= yes
USE_TOOLS+= aclocal autoconf autoheader automake
GNU_CONFIGURE= yes
pre-configure:
cd ${WRKSRC} && aclocal -I . && autoheader && libtoolize --automake \
&& automake -a && autoconf
.include "../../mk/bsd.pkg.mk"