fd4c956f99
- Added sanity checks in the decoding of time when ASN1_DECODE_FLAG_STRICT_DER is used. - Fixes in the decoding of OCTET STRING when close to the end of the structure.
31 lines
905 B
Makefile
31 lines
905 B
Makefile
# $NetBSD: Makefile,v 1.62 2014/10/10 11:38:54 adam Exp $
|
|
|
|
DISTNAME= libtasn1-4.2
|
|
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/"
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# Mac OS X has no prototype for getopt_long and no declaration for
|
|
# struct option, so ignore getopt_long() even though the test succeeds.
|
|
.if ${OPSYS} == "Darwin"
|
|
CONFIGURE_ENV+= ac_cv_func_getopt_long=no
|
|
CFLAGS+= -fno-common
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|