From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: Re: [PATCH] pcre2: Update to version 10.39 Date: Mon, 29 Nov 2021 11:39:24 +0100 Message-ID: <92317f87-8ba1-66af-6185-d194f5e8330b@ipfire.org> In-Reply-To: <4750F30D-CFCF-4DD9-89A9-116E790768E7@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3974780754344919465==" List-Id: --===============3974780754344919465== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Hi Michael, On 29/11/2021 11:05, Michael Tremer wrote: > Hello, >=20 > This patch is absolutely fine, but I wanted to raise that some packages hav= e a =E2=80=94-disable-docs switch for the configure script which might come h= andy for large root file changes like this. Thanks very much for this input. I was not aware of this. Learn something new= every day :-) >=20 > We do not need the docs and so we do not need to install them. That saves e= diting time and might also save us a second of build time. >=20 > Maybe this is a useful thought for some other packages. Will indeed try and remember to check on this in future, same as I now do for= disabling static libs wherever they can be. Regards, Adolf. >=20 > Best, > -Michael >=20 > Reviewed-by: Michael Tremer >=20 >> On 28 Nov 2021, at 22:17, Adolf Belka wrote: >> >> - Update from 10.37 to 10.39 >> - Update of rootfile >> - Changelog >> Version 10.39 29-October-2021 >> 1. Fix incorrect detection of alternatives in first character search i= n JIT. >> 2. Merged patch from @carenas (GitHub #28): >> Visual Studio 2013 includes support for %zu and %td, so let newer >> versions of it avoid the fallback, and while at it, make sure that >> the first check is for DISABLE_PERCENT_ZT so it will be always >> honoured if chosen. >> prtdiff_t is signed, so use a signed type instead, and make sure >> that an appropiate width is chosen if pointers are 64bit wide and >> long is not (ex: Windows 64bit). >> IMHO removing the cast (and therefore the positibilty of truncation) >> make the code cleaner and the fallback is likely portable enough >> with all 64-bit POSIX systems doing LP64 except for Windows. >> 3. Merged patch from @carenas (GitHub #29) to update to Unicode 14.0.0. >> 4. Merged patch from @carenas (GitHub #30): >> * Cleanup: remove references to no longer used stdint.h >> Since 19c50b9d (Unconditionally use inttypes.h instead of trying = for stdint.h >> (simplification) and remove the now unnecessary inclusion in >> pcre2_internal.h., 2018-11-14), stdint.h is no longer used. >> Remove checks for it in autotools and CMake and document better t= he expected >> build failures for systems that might have stdint.h (C99) and not= inttypes.h >> (from POSIX), like old Windows. >> * Cleanup: remove detection for inttypes.h which is a hard dependen= cy >> CMake checks for standard headers are not meant to be used for ha= rd >> dependencies, so will prevent a possible fallback to work. >> Alternatively, the header could be checked to make the configurat= ion fail >> instead of breaking the build, but that was punted, as it was mis= sing anyway >> from autotools. >> 5. Merged patch from @carenas (GitHub #32): >> * jit: allow building with ancient MSVC versions >> Visual Studio older than 2013 fails to build with JIT enabled, be= cause it is >> unable to parse non C89 compatible syntax, with mixed declaration= s and code. >> While most recent compilers wouldn't even report this as a warnin= g since it >> is valid C99, it could be also made visible by adding to gcc/clan= g the >> -Wdeclaration-after-statement flag at build time. >> Move the code below the affected definitions. >> * pcre2grep: avoid mixing declarations with code >> Since d5a61ee8 (Patch to detect (and ignore) symlink loops in pcr= e2grep, >> 2021-08-28), code will fail to build in a strict C89 compiler. >> Reformat slightly to make it C89 compatible again. >> Version 10.38 01-October-2021 >> 1. Fix invalid single character repetition issues in JIT when the repe= tition >> is inside a capturing bracket and the bracket is preceeded by chara= cter >> literals. >> 2. Installed revised CMake configuration files provided by Jan-Willem = Blokland. >> This extends the CMake build system to build both static and shared= libraries >> in one go, builds the static library with PIC, and exposes PCRE2 li= braries >> using the CMake config files. JWB provided these notes: >> - Introduced CMake variable BUILD_STATIC_LIBS to build the static l= ibrary. >> - Make a small modification to config-cmake.h.in by removing the PC= RE2_STATIC >> variable. Added PCRE2_STATIC variable to the static build using t= he >> target_compile_definitions() function. >> - Extended the CMake config files. >> - Introduced CMake variable PCRE2_USE_STATIC_LIBS to easily switc= h between >> the static and shared libraries. >> - Added the PCRE_STATIC variable to the target compile definition= s for the >> import of the static library. >> Building static and shared libraries using MSVC results in a name c= lash of >> the libraries. Both static and shared library builds create, for ex= ample, the >> file pcre2-8.lib. Therefore, I decided to change the static library= names by >> adding "-static". For example, pcre2-8.lib has become pcre2-8-stati= c.lib. >> [Comment by PH: this is MSVC-specific. It doesn't happen on Linux.] >> 3. Increased the minimum release number for CMake to 3.0.0 because old= er than >> 2.8.12 is deprecated (it was set to 2.8.5) and causes warnings. Eve= n 3.0.0 is >> quite old; it was released in 2014. >> 4. Implemented a modified version of Thomas Tempelmann's pcre2grep pat= ch for >> detecting symlink loops. This is dependent on the availability of r= ealpath(), >> which is now tested for in ./configure and CMakeLists.txt. >> 5. Implemented a modified version of Thomas Tempelmann's patch for fas= ter >> case-independent "first code unit" searches for unanchored patterns= in 8-bit >> mode in the interpreters. Instead of just remembering whether one c= ase matched >> or not, it remembers the position of a previous match so as to avoid >> unnecessary repeated searching. >> 6. Perl now locks out \K in lookarounds, so PCRE2 now does the same by= default. >> However, just in case anybody was relying on the old behaviour, the= re is an >> option called PCRE2_EXTRA_ALLOW_LOOKAROUND_BSK that enables the old= behaviour. >> An option has also been added to pcre2grep to enable this. >> 7. Re-enable a JIT optimization which was unintentionally disabled in = 10.35. >> 8. There is a loop counter to catch excessively crazy patterns when ch= ecking >> the lengths of lookbehinds at compile time. This was incorrectly ge= tting reset >> whenever a lookahead was processed, leading to some fuzzer-generate= d patterns >> taking a very long time to compile when (?|) was present in the pat= tern, >> because (?|) disables caching of group lengths. >> >> Signed-off-by: Adolf Belka >> --- >> config/rootfiles/common/pcre2 | 226 +++++++++++++++++----------------- >> lfs/pcre2 | 4 +- >> 2 files changed, 115 insertions(+), 115 deletions(-) >> >> diff --git a/config/rootfiles/common/pcre2 b/config/rootfiles/common/pcre2 >> index e5b02d1f7..9d3e33496 100644 >> --- a/config/rootfiles/common/pcre2 >> +++ b/config/rootfiles/common/pcre2 >> @@ -6,132 +6,132 @@ >> #usr/lib/libpcre2-16.la >> #usr/lib/libpcre2-16.so >> usr/lib/libpcre2-16.so.0 >> -usr/lib/libpcre2-16.so.0.10.2 >> +usr/lib/libpcre2-16.so.0.10.4 >> #usr/lib/libpcre2-32.la >> #usr/lib/libpcre2-32.so >> usr/lib/libpcre2-32.so.0 >> -usr/lib/libpcre2-32.so.0.10.2 >> +usr/lib/libpcre2-32.so.0.10.4 >> #usr/lib/libpcre2-8.la >> #usr/lib/libpcre2-8.so >> usr/lib/libpcre2-8.so.0 >> -usr/lib/libpcre2-8.so.0.10.2 >> +usr/lib/libpcre2-8.so.0.10.4 >> #usr/lib/libpcre2-posix.la >> #usr/lib/libpcre2-posix.so >> usr/lib/libpcre2-posix.so.3 >> -usr/lib/libpcre2-posix.so.3.0.0 >> +usr/lib/libpcre2-posix.so.3.0.1 >> #usr/lib/pkgconfig/libpcre2-16.pc >> #usr/lib/pkgconfig/libpcre2-32.pc >> #usr/lib/pkgconfig/libpcre2-8.pc >> #usr/lib/pkgconfig/libpcre2-posix.pc >> -#usr/share/doc/pcre-pcre2-10.37 >> -#usr/share/doc/pcre-pcre2-10.37/AUTHORS >> -#usr/share/doc/pcre-pcre2-10.37/COPYING >> -#usr/share/doc/pcre-pcre2-10.37/ChangeLog >> -#usr/share/doc/pcre-pcre2-10.37/LICENCE >> -#usr/share/doc/pcre-pcre2-10.37/NEWS >> -#usr/share/doc/pcre-pcre2-10.37/README >> -#usr/share/doc/pcre-pcre2-10.37/html >> -#usr/share/doc/pcre-pcre2-10.37/html/NON-AUTOTOOLS-BUILD.txt >> -#usr/share/doc/pcre-pcre2-10.37/html/README.txt >> -#usr/share/doc/pcre-pcre2-10.37/html/index.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2-config.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_callout_enumerate.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_code_copy.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_code_copy_with_tables.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_code_free.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_compile.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_compile_context_copy.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_compile_context_create.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_compile_context_free.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_config.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_convert_context_copy.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_convert_context_create.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_convert_context_free.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_converted_pattern_free.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_dfa_match.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_general_context_copy.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_general_context_create.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_general_context_free.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_get_error_message.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_get_mark.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_get_match_data_size.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_get_ovector_count.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_get_ovector_pointer.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_get_startchar.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_jit_compile.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_jit_free_unused_memory.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_jit_match.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_jit_stack_assign.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_jit_stack_create.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_jit_stack_free.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_maketables.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_maketables_free.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_match.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_match_context_copy.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_match_context_create.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_match_context_free.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_match_data_create.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_match_data_create_from_pattern= .html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_match_data_free.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_pattern_convert.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_pattern_info.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_serialize_decode.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_serialize_encode.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_serialize_free.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_serialize_get_number_of_codes.= html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_bsr.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_callout.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_character_tables.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_compile_extra_options.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_compile_recursion_guard.ht= ml >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_depth_limit.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_glob_escape.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_glob_separator.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_heap_limit.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_match_limit.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_max_pattern_length.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_newline.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_offset_limit.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_parens_nest_limit.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_recursion_limit.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_recursion_memory_managemen= t.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_set_substitute_callout.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substitute.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_copy_byname.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_copy_bynumber.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_free.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_get_byname.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_get_bynumber.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_length_byname.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_length_bynumber.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_list_free.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_list_get.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_nametable_scan.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2_substring_number_from_name.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2api.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2build.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2callout.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2compat.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2convert.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2demo.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2grep.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2jit.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2limits.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2matching.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2partial.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2pattern.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2perform.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2posix.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2sample.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2serialize.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2syntax.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2test.html >> -#usr/share/doc/pcre-pcre2-10.37/html/pcre2unicode.html >> -#usr/share/doc/pcre-pcre2-10.37/pcre2-config.txt >> -#usr/share/doc/pcre-pcre2-10.37/pcre2.txt >> -#usr/share/doc/pcre-pcre2-10.37/pcre2grep.txt >> -#usr/share/doc/pcre-pcre2-10.37/pcre2test.txt >> +#usr/share/doc/pcre-pcre2-10.39 >> +#usr/share/doc/pcre-pcre2-10.39/AUTHORS >> +#usr/share/doc/pcre-pcre2-10.39/COPYING >> +#usr/share/doc/pcre-pcre2-10.39/ChangeLog >> +#usr/share/doc/pcre-pcre2-10.39/LICENCE >> +#usr/share/doc/pcre-pcre2-10.39/NEWS >> +#usr/share/doc/pcre-pcre2-10.39/README >> +#usr/share/doc/pcre-pcre2-10.39/html >> +#usr/share/doc/pcre-pcre2-10.39/html/NON-AUTOTOOLS-BUILD.txt >> +#usr/share/doc/pcre-pcre2-10.39/html/README.txt >> +#usr/share/doc/pcre-pcre2-10.39/html/index.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2-config.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_callout_enumerate.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_code_copy.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_code_copy_with_tables.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_code_free.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_compile.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_compile_context_copy.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_compile_context_create.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_compile_context_free.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_config.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_convert_context_copy.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_convert_context_create.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_convert_context_free.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_converted_pattern_free.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_dfa_match.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_general_context_copy.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_general_context_create.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_general_context_free.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_get_error_message.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_get_mark.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_get_match_data_size.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_get_ovector_count.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_get_ovector_pointer.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_get_startchar.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_jit_compile.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_jit_free_unused_memory.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_jit_match.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_jit_stack_assign.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_jit_stack_create.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_jit_stack_free.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_maketables.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_maketables_free.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_match.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_match_context_copy.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_match_context_create.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_match_context_free.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_match_data_create.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_match_data_create_from_pattern= .html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_match_data_free.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_pattern_convert.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_pattern_info.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_serialize_decode.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_serialize_encode.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_serialize_free.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_serialize_get_number_of_codes.= html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_set_bsr.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_set_callout.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_set_character_tables.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_set_compile_extra_options.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_set_compile_recursion_guard.ht= ml >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_set_depth_limit.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_set_glob_escape.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_set_glob_separator.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_set_heap_limit.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_set_match_limit.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_set_max_pattern_length.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_set_newline.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_set_offset_limit.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_set_parens_nest_limit.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_set_recursion_limit.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_set_recursion_memory_managemen= t.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_set_substitute_callout.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_substitute.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_substring_copy_byname.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_substring_copy_bynumber.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_substring_free.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_substring_get_byname.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_substring_get_bynumber.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_substring_length_byname.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_substring_length_bynumber.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_substring_list_free.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_substring_list_get.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_substring_nametable_scan.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2_substring_number_from_name.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2api.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2build.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2callout.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2compat.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2convert.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2demo.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2grep.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2jit.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2limits.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2matching.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2partial.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2pattern.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2perform.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2posix.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2sample.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2serialize.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2syntax.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2test.html >> +#usr/share/doc/pcre-pcre2-10.39/html/pcre2unicode.html >> +#usr/share/doc/pcre-pcre2-10.39/pcre2-config.txt >> +#usr/share/doc/pcre-pcre2-10.39/pcre2.txt >> +#usr/share/doc/pcre-pcre2-10.39/pcre2grep.txt >> +#usr/share/doc/pcre-pcre2-10.39/pcre2test.txt >> #usr/share/man/man1/pcre2-config.1 >> #usr/share/man/man1/pcre2grep.1 >> #usr/share/man/man1/pcre2test.1 >> diff --git a/lfs/pcre2 b/lfs/pcre2 >> index fd9548a73..00bea9203 100644 >> --- a/lfs/pcre2 >> +++ b/lfs/pcre2 >> @@ -24,7 +24,7 @@ >> >> include Config >> >> -VER =3D 10.37 >> +VER =3D 10.39 >> >> THISAPP =3D pcre2-$(VER) >> DL_FILE =3D $(THISAPP).tar.gz >> @@ -54,7 +54,7 @@ objects =3D $(DL_FILE) >> >> $(DL_FILE) =3D $(DL_FROM)/$(DL_FILE) >> >> -$(DL_FILE)_MD5 =3D a0b59d89828f62d2e1caac04f7c51e0b >> +$(DL_FILE)_MD5 =3D 7389e3524de2cda3d21fde8c224febf1 >> >> install : $(TARGET) >> >> --=20 >> 2.34.0 >> >=20 --===============3974780754344919465==--