package/pcre2: bump version to 10.44

- enable PCRE2_AUTORECONF to fix the following buildi/relink failure:

    x86_64-buildroot-linux-gnu-gcc: ERROR: unsafe header/library path used
    in cross-compilation: '-L/usr/lib'

For details see [1].

[1] https://github.com/PCRE2Project/pcre2/blob/master/ChangeLog

Signed-off-by: Peter Seiderer <ps.report@gmx.net>
Tested-by: Marcus Hoffmann <buildroot@bubu1.eu>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Peter Seiderer
2024-06-26 11:00:26 +02:00
committed by Thomas Petazzoni
parent 1c38699601
commit 689aff3df4
2 changed files with 6 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
# Locally calculated after checking pgp signature:
# https://github.com/PhilipHazel/pcre2/releases/download/pcre2-10.43/pcre2-10.43.tar.bz2.sig
sha256 e2a53984ff0b07dfdb5ae4486bbb9b21cca8e7df2434096cc9bf1b728c350bcb pcre2-10.43.tar.bz2
# https://github.com/PhilipHazel/pcre2/releases/download/pcre2-10.44/pcre2-10.44.tar.bz2.sig
sha256 d34f02e113cf7193a1ebf2770d3ac527088d485d4e047ed10e5d217c6ef5de96 pcre2-10.44.tar.bz2
# Locally computed
sha256 030087e2e8dd7c1bdd26057d25d4ded8f45bbf01ad458d68665ad04b8b0fbedf LICENCE

View File

@@ -4,7 +4,7 @@
#
################################################################################
PCRE2_VERSION = 10.43
PCRE2_VERSION = 10.44
PCRE2_SITE = https://github.com/PCRE2Project/pcre2/releases/download/pcre2-$(PCRE2_VERSION)
PCRE2_SOURCE = pcre2-$(PCRE2_VERSION).tar.bz2
PCRE2_LICENSE = BSD-3-Clause
@@ -12,6 +12,9 @@ PCRE2_LICENSE_FILES = LICENCE
PCRE2_CPE_ID_VENDOR = pcre
PCRE2_INSTALL_STAGING = YES
PCRE2_CONFIG_SCRIPTS = pcre2-config
# Fixes build/relink failure ("ERROR: unsafe header/library path used in
# cross-compilation: '-L/usr/lib'")
PCRE2_AUTORECONF = YES
PCRE2_CONF_OPTS += --enable-pcre2-8
PCRE2_CONF_OPTS += $(if $(BR2_PACKAGE_PCRE2_16),--enable-pcre2-16,--disable-pcre2-16)