summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland Hieber <rhi@pengutronix.de>2019-06-26 14:43:23 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-06-28 10:07:10 +0200
commit93522ac464e59d01c7e4504628ef8298430d3a2d (patch)
tree68a3310d271329dfe689ba29b0e61520351106be
parentfc9d60b87a752ac942f881ef22d85a076645cba7 (diff)
downloadptxdist-93522ac464e59d01c7e4504628ef8298430d3a2d.tar.gz
ptxdist-93522ac464e59d01c7e4504628ef8298430d3a2d.tar.xz
libpcre: version bump 8.40 -> 8.43
Also pin down all config options, choosing configure's defaults where no kconfig options exist, and make the newline option more clear. configure errors if we set both --enable-utf and --enable-utf8, so set only one of them: configure: error: --enable/disable-utf8 is kept only for compatibility reasons and its value is copied to --enable/disable-utf. Newer code must use --enable/disable-utf alone. Some typos were fixed and copyright dates were bumped in the LICENSE file, adjust its MD5sum. Signed-off-by: Roland Hieber <rhi@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/libpcre.in3
-rw-r--r--rules/libpcre.make43
2 files changed, 36 insertions, 10 deletions
diff --git a/rules/libpcre.in b/rules/libpcre.in
index f19122126..9d664a248 100644
--- a/rules/libpcre.in
+++ b/rules/libpcre.in
@@ -20,6 +20,9 @@ if LIBPCRE
config LIBPCRE_ENABLE_NEWLINE_IS_ANYCRLF
bool "Enable NL is any CRLF"
+ help
+ If true, any CR/LF combination is interpreted as a newline.
+ If false, only LF is interpreted as a newline.
config LIBPCRE_ENABLE_PCREGREP_LIBZ
bool "Enable grep libz"
diff --git a/rules/libpcre.make b/rules/libpcre.make
index ca56b3593..810f3d07c 100644
--- a/rules/libpcre.make
+++ b/rules/libpcre.make
@@ -17,15 +17,15 @@ PACKAGES-$(PTXCONF_LIBPCRE) += libpcre
#
# Paths and names
#
-LIBPCRE_VERSION := 8.40
-LIBPCRE_MD5 := 41a842bf7dcecd6634219336e2167d1d
+LIBPCRE_VERSION := 8.43
+LIBPCRE_MD5 := 636222e79e392c3d95dcc545f24f98c4
LIBPCRE := pcre-$(LIBPCRE_VERSION)
LIBPCRE_SUFFIX := tar.bz2
LIBPCRE_URL := $(call ptx/mirror, SF, pcre/$(LIBPCRE).$(LIBPCRE_SUFFIX))
LIBPCRE_SOURCE := $(SRCDIR)/$(LIBPCRE).$(LIBPCRE_SUFFIX)
LIBPCRE_DIR := $(BUILDDIR)/$(LIBPCRE)
LIBPCRE_LICENSE := BSD-3-Clause
-LIBPCRE_LICENSE_FILES := file://LICENCE;md5=60da32d84d067f53e22071c4ecb4384d
+LIBPCRE_LICENSE_FILES := file://LICENCE;md5=91bee59d1b327eb1599b4c673e2fb3d1
# ----------------------------------------------------------------------------
# Prepare
@@ -34,16 +34,39 @@ LIBPCRE_LICENSE_FILES := file://LICENCE;md5=60da32d84d067f53e22071c4ecb4384d
#
# autoconf
#
-LIBPCRE_AUTOCONF := \
+LIBPCRE_CONF_TOOL := autoconf
+LIBPCRE_CONF_OPT := \
$(CROSS_AUTOCONF_USR) \
+ --enable-pcre8 \
+ --enable-pcre16 \
+ --enable-pcre32 \
+ --$(call ptx/endis, PTXCONF_LIBPCRE_LIBPCRECPP)-cpp \
+ --disable-jit \
+ --enable-pcregrep-jit \
+ --disable-rebuild-chartables \
+ --$(call ptx/endis, PTXCONF_LIBPCRE_ENABLE_UTF8)-utf \
+ --$(call ptx/endis, PTXCONF_LIBPCRE_ENABLE_UTF8)-unicode-properties \
+ --disable-newline-is-cr \
+ --$(call ptx/disen, PTXCONF_LIBPCRE_ENABLE_NEWLINE_IS_ANYCRLF)-newline-is-lf \
+ --disable-newline-is-crlf \
+ --$(call ptx/endis, PTXCONF_LIBPCRE_ENABLE_NEWLINE_IS_ANYCRLF)-newline-is-anycrlf \
+ --disable-newline-is-any \
+ --disable-bsr-anycrlf \
+ --disable-ebcdic \
+ --disable-ebcdic-nl25 \
+ --enable-stack-for-recursion \
--$(call ptx/endis, PTXCONF_LIBPCRE_ENABLE_PCREGREP_LIBZ)-pcregrep-libz \
--$(call ptx/endis, PTXCONF_LIBPCRE_ENABLE_PCREGREP_LIBBZ2)-pcregrep-libbz2 \
- --$(call ptx/endis, PTXCONF_LIBPCRE_ENABLE_UTF8)-utf8 \
- --$(call ptx/endis, PTXCONF_LIBPCRE_ENABLE_UTF8)-unicode-properties \
-
-ifdef PTXCONF_LIBPCRE_ENABLE_NEWLINE_IS_ANYCRLF
-LIBPCRE_AUTOCONF += --enable-newline-is-anycrlf
-endif
+ --disable-pcretest-libedit \
+ --disable-pcretest-libreadline \
+ --disable-valgrind \
+ --disable-coverage \
+ --with-pcregrep-bufsize=20480 \
+ --with-posix-malloc-threshold=10 \
+ --with-link-size=2 \
+ --with-parens-nest-limit=250 \
+ --with-match-limit=10000000 \
+ --with-match-limit-recursion=10000000
# ----------------------------------------------------------------------------
# Target-Install