c2abbcb94b
Changelog ========= 3.2.2 2021-01-07 Bugfix: Header field name is not found by canlock-mhp if there is another header field for which only the prefix differs (and that other field is processed first) Test suite for canlock-mhp parser extended: It now tests headers larger than 4 KiByte and for the field prefix bug fixed in this version Lexer of canlock-hfp has problems to detect T_CTEXT tokens on HP-UX (relevant only if the header field contains comments). The syntax of the ERE for T_CTEXT was rewritten to be compatible with the SysV lex of HP-UX 11.11 Test suite for canlock-hfp parser extended to test comments harder Namespace clash of internal library functions with libc on NetBSD Changed internal API function names hmac* to RFC2104Hmac* Changed internal API function names hkdf* to RFC5869Hkdf* Library API and ABI are fully compatible if no undocumented functions are used libcanlock-3.pc: Changed protocol in URL from http to https
24 lines
542 B
Makefile
24 lines
542 B
Makefile
# $NetBSD: Makefile,v 1.6 2021/01/11 12:23:19 micha Exp $
|
|
|
|
DISTNAME= libcanlock-3.2.2
|
|
PKGNAME= ${DISTNAME:S/libcanlock/canlock-hp/}
|
|
CATEGORIES= news
|
|
MASTER_SITES= http://micha.freeshell.org/libcanlock/src/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= micha@NetBSD.org
|
|
HOMEPAGE= http://micha.freeshell.org/canlock-hp/
|
|
COMMENT= Parsers for RFC 5536 message headers and RFC 8315 header fields
|
|
LICENSE= mit
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_DIRS= hp
|
|
BUILD_DIRS= hp
|
|
|
|
USE_LANGUAGES+= c99
|
|
|
|
USE_TOOLS+= lex yacc
|
|
|
|
TEST_TARGET= test
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|