8ac13eab37
* Noteworthy changes in release 4.8 (released 2016-04-11) [stable] - Fixes to avoid reliance on C undefined behavior. - Fixes to avoid an infinite recursion when decoding without the ASN1_DECODE_FLAG_STRICT_DER flag. Reported by Pascal Cuoq. - Combined all the BER octet string decoding functions to a single one based on asn1_decode_simple_ber(). * Noteworthy changes in release 4.7 (released 2015-09-14) [stable] - Fixed regression introduced in the decoding of multi-byte tags fix. * Noteworthy changes in release 4.6 (released 2015-09-05) [stable] - Allow decoding OCTET STRINGs with multi-byte tags. - API and ABI changes since last version: asn1_get_object_id_der: New function
27 lines
852 B
Makefile
27 lines
852 B
Makefile
# $NetBSD: Makefile,v 1.66 2016/06/22 10:36:00 wiz Exp $
|
|
|
|
DISTNAME= libtasn1-4.8
|
|
CATEGORIES= security devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=libtasn1/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.gnu.org/software/libtasn1/
|
|
COMMENT= ASN.1 structure parser library
|
|
LICENSE= gnu-fdl-v1.3 AND gnu-lgpl-v2.1 AND gnu-gpl-v3
|
|
|
|
USE_TOOLS+= makeinfo
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
TEST_TARGET= check
|
|
INFO_FILES= yes
|
|
|
|
CONFIGURE_ARGS+= --with-packager="pkgsrc"
|
|
CONFIGURE_ARGS+= --with-packager-version="${PKGVERSION}"
|
|
CONFIGURE_ARGS+= --with-packager-bug-reports="http://gnats.NetBSD.org/"
|
|
|
|
# Mac OS X has no prototype for getopt_long and no declaration for
|
|
# struct option, so ignore getopt_long() even though the test succeeds.
|
|
CONFIGURE_ENV.Darwin+= ac_cv_func_getopt_long=no
|
|
CFLAGS.Darwin+= -fno-common
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|