Version 10.31 12-February-2018 ------------------------------ This is mainly a bugfix and tidying release (see ChangeLog for full details). However, there are some minor enhancements. 1. New pcre2_config() options: PCRE2_CONFIG_NEVER_BACKSLASH_C and PCRE2_CONFIG_COMPILED_WIDTHS. 2. New pcre2_pattern_info() option PCRE2_INFO_EXTRAOPTIONS to retrieve the extra compile time options. 3. There are now public names for all the pcre2_compile() error numbers. 4. Added PCRE2_CALLOUT_STARTMATCH and PCRE2_CALLOUT_BACKTRACK bits to a new field callout_flags in callout blocks.
35 lines
982 B
Makefile
35 lines
982 B
Makefile
# $NetBSD: Makefile,v 1.11 2018/04/17 08:56:06 wiz Exp $
|
|
|
|
DISTNAME= pcre2-10.31
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/
|
|
MASTER_SITES+= https://ftp.pcre.org/pub/pcre/
|
|
MASTER_SITES+= ${MASTER_SITE_SOURCEFORGE:=pcre/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.pcre.org/
|
|
COMMENT= Perl Compatible Regular Expressions library (major version 2)
|
|
LICENSE= modified-bsd
|
|
|
|
USE_LANGUAGES= c
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
PKGCONFIG_OVERRIDE+= libpcre2-16.pc.in
|
|
PKGCONFIG_OVERRIDE+= libpcre2-posix.pc.in
|
|
PKGCONFIG_OVERRIDE+= libpcre2-8.pc.in
|
|
PKGCONFIG_OVERRIDE+= libpcre2-32.pc.in
|
|
|
|
CONFIGURE_ARGS+= --enable-pcre2-16
|
|
CONFIGURE_ARGS+= --enable-pcre2-32
|
|
CONFIGURE_ARGS+= --enable-pcre2grep-libz
|
|
CONFIGURE_ARGS+= --enable-pcre2grep-libbz2
|
|
|
|
TEST_TARGET= check
|
|
|
|
.include "options.mk"
|
|
|
|
.include "../../archivers/bzip2/buildlink3.mk"
|
|
.include "../../devel/zlib/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|