Add CI test to ensure installation manifest is correct (#630)

The new CI job ensures that `make distcheck` passes.

It also bundles up the tarball and includes in the GitHub artifacts, along with a GitHub-provided attestation that the tarball is derived from the given build steps.
This commit is contained in:
Nicholas Wilson
2024-12-18 12:02:23 +00:00
committed by GitHub
parent 413bd8a6ee
commit 5b3edae9d2
20 changed files with 1953 additions and 14 deletions

3
.gitattributes vendored
View File

@@ -1 +1,2 @@
testdata/* -text
testdata/* -text
maint/manifest-* -text

View File

@@ -45,6 +45,11 @@ jobs:
- name: Test (pcre2posix program)
run: ./pcre2posix_test -v
- name: Install
run: |
make install "DESTDIR=`pwd`/install-dir"
maint/RunManifestTest install-dir maint/manifest-makeinstall-linux
alpine:
name: alpine
runs-on: ubuntu-latest
@@ -79,6 +84,11 @@ jobs:
- name: Test (pcre2posix program)
run: ./pcre2posix_test -v
- name: Install
run: |
make install "DESTDIR=`pwd`/install-dir"
maint/RunManifestTest install-dir maint/manifest-makeinstall-linux
macos:
name: macOS universal
runs-on: macos-latest
@@ -89,7 +99,7 @@ jobs:
submodules: true
- name: Configure
run: cmake -DPCRE2_SUPPORT_JIT=ON -DPCRE2_BUILD_PCRE2_16=ON -DPCRE2_BUILD_PCRE2_32=ON -DPCRE2_SUPPORT_LIBZ=ON -DPCRE2_SUPPORT_LIBBZ2=ON -DCMAKE_OSX_ARCHITECTURES='arm64;x86_64' -DCMAKE_C_FLAGS='-Wall -Wextra' -DCMAKE_COMPILE_WARNING_AS_ERROR=ON -DCMAKE_BUILD_TYPE=Release -B build
run: cmake -DPCRE2_SUPPORT_JIT=ON -DPCRE2_BUILD_PCRE2_16=ON -DPCRE2_BUILD_PCRE2_32=ON -DPCRE2_SUPPORT_LIBZ=ON -DPCRE2_SUPPORT_LIBBZ2=ON -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=ON -DCMAKE_OSX_ARCHITECTURES='arm64;x86_64' -DCMAKE_C_FLAGS='-Wall -Wextra' -DCMAKE_COMPILE_WARNING_AS_ERROR=ON -DCMAKE_BUILD_TYPE=Release -B build
- name: Build
run: cd build && make -j3
@@ -97,6 +107,12 @@ jobs:
- name: Test
run: cd build && ctest -j3 --output-on-failure
- name: Install
run: |
cd build
cmake --install . --prefix install-dir
../maint/RunManifestTest install-dir ../maint/manifest-cmakeinstall-macos
windows:
name: Windows
runs-on: windows-latest
@@ -111,7 +127,7 @@ jobs:
submodules: true
- name: Configure
run: cmake -DPCRE2_SUPPORT_JIT=ON -DPCRE2_BUILD_PCRE2_16=ON -DPCRE2_BUILD_PCRE2_32=ON -DCMAKE_COMPILE_WARNING_AS_ERROR=ON -B build -A ${{ matrix.arch }}
run: cmake -DPCRE2_SUPPORT_JIT=ON -DPCRE2_BUILD_PCRE2_16=ON -DPCRE2_BUILD_PCRE2_32=ON -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=ON -DCMAKE_COMPILE_WARNING_AS_ERROR=ON -B build -A ${{ matrix.arch }}
- name: Build
run: cmake --build build --config Release
@@ -119,6 +135,12 @@ jobs:
- name: Test
run: cd build && ctest -C Release -j3 --output-on-failure
- name: Install
run: |
cd build
cmake --install . --config Release --prefix install-dir
../maint/RunManifestTest.ps1 install-dir ../maint/manifest-cmakeinstall-windows
freebsd:
name: FreeBSD
runs-on: ubuntu-latest
@@ -142,6 +164,9 @@ jobs:
make -j3 CPPFLAGS='-Wall -Wextra -Werror'
make check
make install "DESTDIR=`pwd`/install-dir"
maint/RunManifestTest install-dir maint/manifest-makeinstall-freebsd
solaris:
name: Solaris
runs-on: ubuntu-latest
@@ -192,6 +217,64 @@ jobs:
make CPPFLAGS='-Wall -Wextra -Werror'
make check
make install "DESTDIR=`pwd`/install-dir"
maint/RunManifestTest install-dir maint/manifest-makeinstall-linux
distcheck:
name: Build & verify distribution
runs-on: ubuntu-24.04 # TODO: Update to ubuntu-latest when that switches to 24.04
permissions:
id-token: write # Needed to make calls to the Sigstore service
attestations: write # Needed to write the attestation to GitHub's database
contents: read
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
submodules: true
- name: Prepare
run: |
./autogen.sh
# Workaround for incorrect filesystem permissions on /usr/share/aclocal, which
# causes the m4 macros to be copied with incorrect permissions.
chmod u=rw,go=r m4/*.m4
- name: Configure
run: ./configure
- name: Distcheck
run: make distcheck -j3
- name: Manifest
run: |
mkdir tarball-dir
tar -C tarball-dir -xzf pcre2-*.tar.gz
# Budge the directory, so we don't back the version number into the
# `manifest-tarball` file:
mv tarball-dir/pcre2-* tarball-dir/pcre2-SNAPSHOT
maint/RunManifestTest tarball-dir maint/manifest-tarball
- name: Upload to GitHub artifacts
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
with:
name: "Distribution release"
path: |
pcre2-*.tar.bz2
pcre2-*.tar.gz
pcre2-*.zip
if-no-files-found: error
- name: Attest
uses: actions/attest-build-provenance@7668571508540a607bdfd90a87a560489fe372eb # v2.1.0
if: |
github.event_name != 'pull_request' &&
(startsWith(github.ref, 'refs/heads/release/') ||
startsWith(github.ref, 'refs/tags/pcre2-'))
with:
subject-path: 'pcre2-*.tar.bz2, pcre2-*.tar.gz, pcre2-*.zip'
coverage:
name: Code coverage
runs-on: ubuntu-latest

View File

@@ -95,7 +95,7 @@ jobs:
submodules: true
- name: Configure
run: cmake -DPCRE2_SUPPORT_JIT=ON -DPCRE2_BUILD_PCRE2_16=ON -DPCRE2_BUILD_PCRE2_32=ON -DPCRE2_DEBUG=ON -DCMAKE_COMPILE_WARNING_AS_ERROR=ON -DCMAKE_BUILD_TYPE=Release -B build
run: cmake -DPCRE2_SUPPORT_JIT=ON -DPCRE2_BUILD_PCRE2_16=ON -DPCRE2_BUILD_PCRE2_32=ON -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=ON -DPCRE2_DEBUG=ON -DCMAKE_COMPILE_WARNING_AS_ERROR=ON -DCMAKE_BUILD_TYPE=Release -B build
- name: Build
run: cd build && make -j3
@@ -103,6 +103,12 @@ jobs:
- name: Test
run: cd build && ctest -j3 --output-on-failure
- name: Install
run: |
cd build
cmake --install . --prefix install-dir
../maint/RunManifestTest install-dir ../maint/manifest-cmakeinstall-linux
dodo:
# Tests with: Autconf on oldest supported Ubuntu (in non-extended support)
name: GCC -Os, old Autotools
@@ -125,6 +131,11 @@ jobs:
- name: Test
run: make check
- name: Install
run: |
make install "DESTDIR=`pwd`/install-dir"
maint/RunManifestTest install-dir maint/manifest-makeinstall-linux
wasp:
# Tests with: French locale; oldest supported CMake; no JIT; -Os; libreadline
name: GCC -Os, CMake+ninja, no JIT
@@ -157,7 +168,7 @@ jobs:
- name: Configure
run: |
cmake --version | grep "version ${CMAKE_VER}" || (echo "CMake version mismatch" && exit 1)
CC='clang' CFLAGS='-fsanitize=undefined,address,integer -fno-sanitize-recover=undefined,integer -fno-sanitize=unsigned-shift-base,function -pedantic -Wall -Wextra -Wpedantic -Wdeclaration-after-statement -Wshadow -Wno-overlength-strings -Werror -Wno-error=incompatible-pointer-types-discards-qualifiers' cmake -G Ninja -DPCRE2_BUILD_PCRE2_16=ON -DPCRE2_BUILD_PCRE2_32=ON -DPCRE2_DEBUG=ON -DPCRE2_SUPPORT_LIBREADLINE=ON -DCMAKE_BUILD_TYPE=MinSizeRel -B build
CC='clang' CFLAGS='-fsanitize=undefined,address,integer -fno-sanitize-recover=undefined,integer -fno-sanitize=unsigned-shift-base,function -pedantic -Wall -Wextra -Wpedantic -Wdeclaration-after-statement -Wshadow -Wno-overlength-strings -Werror -Wno-error=incompatible-pointer-types-discards-qualifiers' cmake -G Ninja -DPCRE2_BUILD_PCRE2_16=ON -DPCRE2_BUILD_PCRE2_32=ON -DBUILD_SHARED_LIBS=ON -DBUILD_STATIC_LIBS=ON -DPCRE2_DEBUG=ON -DPCRE2_SUPPORT_LIBREADLINE=ON -DCMAKE_BUILD_TYPE=MinSizeRel -B build
- name: Build
run: ninja -C build
@@ -165,6 +176,12 @@ jobs:
- name: Test
run: cd build && ctest -j3 --output-on-failure
- name: Install
run: |
cd build
cmake --install . --prefix install-dir
../maint/RunManifestTest install-dir ../maint/manifest-cmakeinstall-linux
bat:
# Tests with: MSVC 32-bit, and a variety of CMake options
name: Windows (Win32)

View File

@@ -1,4 +1,4 @@
#!/usr/bin/perl
#! /usr/bin/perl
# This is a script for checking whether a file contains any carriage return
# characters, and whether it is valid UTF-8.

View File

@@ -1,4 +1,4 @@
#!/usr/bin/perl
#! /usr/bin/perl
# This is a script for removing trailing whitespace from lines in files that
# are listed on the command line.

View File

@@ -1,5 +1,3 @@
#! /usr/bin/python
# PCRE2 UNICODE PROPERTY SUPPORT
# ------------------------------

View File

@@ -1,4 +1,4 @@
#! /usr/bin/python
#! /usr/bin/env python3
# PCRE2 UNICODE PROPERTY SUPPORT
# ------------------------------

View File

@@ -1,4 +1,4 @@
#! /usr/bin/python
#! /usr/bin/env python3
# PCRE2 UNICODE PROPERTY SUPPORT
# ------------------------------

View File

@@ -1,4 +1,4 @@
#! /usr/bin/python
#! /usr/bin/env python3
# PCRE2 UNICODE PROPERTY SUPPORT
# ------------------------------

View File

@@ -1,4 +1,4 @@
#! /usr/bin/python
#! /usr/bin/env python3
# PCRE2 UNICODE PROPERTY SUPPORT
# ------------------------------

View File

@@ -1,4 +1,4 @@
#/bin/sh
#! /bin/bash
# Script to prepare the files for building a PCRE2 release. It does some
# processing of the documentation and detrails files.

View File

@@ -60,6 +60,10 @@ GenerateUcpTables.py
GenerateCommon.py and Unicode data files. The generated file contains tables
for looking up Unicode property names.
manifest-*
Data files used to verify the contents of the distribution tarball and
`make install` file lists.
ManyConfigTests
A shell script that runs "configure, make, test" a number of times with
different configuration settings.
@@ -76,6 +80,11 @@ pcre2_chartables.c.non-standard
README
This file.
RunManifestTest
RunManifestTest.ps1
Scripts to generate and verify a list of files against an expected 'manifest'
detailing what the directory should contain.
Unicode.tables
The files in this directory were downloaded from the Unicode web site. They
contain information about Unicode characters and scripts, and are used by the
@@ -151,6 +160,23 @@ are written to testinput and testoutput in the current directory, but they
should be moved to replace the files inside the main testdata directory and
that are being used for tests 27 or 26.
In summary:
```
./GenerateUcd.py ../src/pcre2_ucd.c
./GenerateUcpHeader.py ../src/pcre2_ucp.h
./GenerateUcpTables.py ../src/pcre2_ucptables.c
./GenerateTest.py
mv testinput ../testdata/testinput27
mv testoutput ../testdata/testoutput27
...compile ucptest.c
for i in 1 2; do
./ucptest < ucptestdata/testinput$i > testoutput$i
diff -U3 testoutput$i ucptestdata/testoutput$i
done
```
Preparing for a PCRE2 release
=============================

47
maint/RunManifestTest Executable file
View File

@@ -0,0 +1,47 @@
#! /bin/sh
# Script to test a directory listing. We use this to verify that the list of
# files installed by "make install" or "cmake --install" matches what we expect.
LANG=C # Ensure stable ordering of `sort` output
export LANG
if [ "$1" = "" -o "$2" = "" ] ; then
echo "Usage: $0 <dir> <manifest name>" >&2
exit 1
fi
input_dir="$1"
expected_manifest="$2"
base=`basename $expected_manifest`
sed=sed
grep=grep
# Helpers for Solaris
if [ -f /usr/bin/gsed ] ; then
sed=/usr/bin/gsed
fi
if [ -f /usr/bin/ggrep ] ; then
grep=/usr/bin/ggrep
fi
find "$input_dir" -print | \
sort | \
xargs -n1 -- ls -l -d -n | \
$sed -E -e 's/ {2,}/ /g' | \
cut -d' ' -f '1,9-' \
> "$base"
if ! diff -u "$expected_manifest" "$base"; then
echo "Installed files differ from expected" >&2
echo "===Actual===" >&2
cat "$base" >&2
echo "===End===" >&2
exit 1
fi
echo "Installed files match expected"
rm -f "$base"

36
maint/RunManifestTest.ps1 Normal file
View File

@@ -0,0 +1,36 @@
# Script to test a directory listing. We use this to verify that the list of
# files installed by "make install" or "cmake --install" matches what we expect.
param (
[Parameter(Mandatory=$true)]
[string]$inputDir,
[Parameter(Mandatory=$true)]
[string]$manifestName
)
if ((-not $inputDir) -or (-not $manifestName)) {
throw "Usage: .\RunManifestTest.ps1 <dir> <manifest name>"
}
$base = [System.IO.Path]::GetFileName($manifestName)
$installedFiles = Get-ChildItem -Recurse -Force -Path $inputDir |
Sort-Object {[System.BitConverter]::ToString([system.Text.Encoding]::UTF8.GetBytes($_.FullName))} |
ForEach-Object { $_.Mode.Substring(0,5) + " " + ($_.FullName | Resolve-Path -Relative) }
$null = New-Item -Force $base -Value (($installedFiles | Out-String) -replace "`r`n", "`n")
$expectedFiles = Get-Content -Path $manifestName -Raw
$actualFiles = Get-Content -Path $base -Raw
if ($expectedFiles -ne $actualFiles) {
Write-Host "===Actual==="
Write-Host $actualFiles
Write-Host "===End==="
throw "Installed files differ from expected"
}
Write-Host "Installed files match expected"
Remove-Item -Path $base -Force

View File

@@ -0,0 +1,253 @@
drwxr-xr-x install-dir
drwxr-xr-x install-dir/bin
-rwxr-xr-x install-dir/bin/pcre2-config
-rwxr-xr-x install-dir/bin/pcre2grep
-rwxr-xr-x install-dir/bin/pcre2test
drwxr-xr-x install-dir/include
-rw-r--r-- install-dir/include/pcre2.h
-rw-r--r-- install-dir/include/pcre2posix.h
drwxr-xr-x install-dir/lib
drwxr-xr-x install-dir/lib/cmake
drwxr-xr-x install-dir/lib/cmake/pcre2
-rw-r--r-- install-dir/lib/cmake/pcre2/pcre2-config-version.cmake
-rw-r--r-- install-dir/lib/cmake/pcre2/pcre2-config.cmake
-rw-r--r-- install-dir/lib/libpcre2-16.a
lrwxrwxrwx install-dir/lib/libpcre2-16.so -> libpcre2-16.so.0
lrwxrwxrwx install-dir/lib/libpcre2-16.so.0 -> libpcre2-16.so.0.13.0
-rw-r--r-- install-dir/lib/libpcre2-16.so.0.13.0
-rw-r--r-- install-dir/lib/libpcre2-32.a
lrwxrwxrwx install-dir/lib/libpcre2-32.so -> libpcre2-32.so.0
lrwxrwxrwx install-dir/lib/libpcre2-32.so.0 -> libpcre2-32.so.0.13.0
-rw-r--r-- install-dir/lib/libpcre2-32.so.0.13.0
-rw-r--r-- install-dir/lib/libpcre2-8.a
lrwxrwxrwx install-dir/lib/libpcre2-8.so -> libpcre2-8.so.0
lrwxrwxrwx install-dir/lib/libpcre2-8.so.0 -> libpcre2-8.so.0.13.0
-rw-r--r-- install-dir/lib/libpcre2-8.so.0.13.0
-rw-r--r-- install-dir/lib/libpcre2-posix.a
lrwxrwxrwx install-dir/lib/libpcre2-posix.so -> libpcre2-posix.so.3
lrwxrwxrwx install-dir/lib/libpcre2-posix.so.3 -> libpcre2-posix.so.3.0.5
-rw-r--r-- install-dir/lib/libpcre2-posix.so.3.0.5
drwxr-xr-x install-dir/lib/pkgconfig
-rw-r--r-- install-dir/lib/pkgconfig/libpcre2-16.pc
-rw-r--r-- install-dir/lib/pkgconfig/libpcre2-32.pc
-rw-r--r-- install-dir/lib/pkgconfig/libpcre2-8.pc
-rw-r--r-- install-dir/lib/pkgconfig/libpcre2-posix.pc
drwxr-xr-x install-dir/share
drwxr-xr-x install-dir/share/doc
drwxr-xr-x install-dir/share/doc/pcre2
-rw-r--r-- install-dir/share/doc/pcre2/AUTHORS.md
-rw-r--r-- install-dir/share/doc/pcre2/COPYING
-rw-r--r-- install-dir/share/doc/pcre2/ChangeLog
-rw-r--r-- install-dir/share/doc/pcre2/LICENCE.md
-rw-r--r-- install-dir/share/doc/pcre2/NEWS
-rw-r--r-- install-dir/share/doc/pcre2/README
-rw-r--r-- install-dir/share/doc/pcre2/SECURITY.md
drwxr-xr-x install-dir/share/doc/pcre2/html
-rw-r--r-- install-dir/share/doc/pcre2/html/NON-AUTOTOOLS-BUILD.txt
-rw-r--r-- install-dir/share/doc/pcre2/html/README.txt
-rw-r--r-- install-dir/share/doc/pcre2/html/index.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2-config.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_callout_enumerate.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_code_copy.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_code_copy_with_tables.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_code_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_compile.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_compile_context_copy.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_compile_context_create.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_compile_context_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_config.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_convert_context_copy.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_convert_context_create.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_convert_context_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_converted_pattern_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_dfa_match.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_general_context_copy.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_general_context_create.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_general_context_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_get_error_message.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_get_mark.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_get_match_data_heapframes_size.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_get_match_data_size.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_get_ovector_count.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_get_ovector_pointer.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_get_startchar.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_jit_compile.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_jit_free_unused_memory.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_jit_match.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_jit_stack_assign.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_jit_stack_create.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_jit_stack_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_maketables.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_maketables_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_match.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_match_context_copy.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_match_context_create.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_match_context_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_match_data_create.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_match_data_create_from_pattern.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_match_data_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_pattern_convert.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_pattern_info.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_serialize_decode.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_serialize_encode.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_serialize_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_serialize_get_number_of_codes.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_bsr.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_callout.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_character_tables.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_compile_extra_options.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_compile_recursion_guard.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_depth_limit.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_glob_escape.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_glob_separator.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_heap_limit.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_match_limit.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_max_pattern_compiled_length.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_max_pattern_length.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_max_varlookbehind.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_newline.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_offset_limit.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_optimize.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_parens_nest_limit.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_recursion_limit.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_recursion_memory_management.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_substitute_callout.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_substitute_case_callout.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substitute.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_copy_byname.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_copy_bynumber.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_get_byname.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_get_bynumber.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_length_byname.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_length_bynumber.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_list_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_list_get.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_nametable_scan.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_number_from_name.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2api.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2build.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2callout.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2compat.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2convert.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2demo.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2grep.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2jit.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2limits.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2matching.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2partial.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2pattern.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2perform.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2posix.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2sample.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2serialize.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2syntax.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2test.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2unicode.html
-rw-r--r-- install-dir/share/doc/pcre2/pcre2-config.txt
-rw-r--r-- install-dir/share/doc/pcre2/pcre2.txt
-rw-r--r-- install-dir/share/doc/pcre2/pcre2grep.txt
-rw-r--r-- install-dir/share/doc/pcre2/pcre2test.txt
drwxr-xr-x install-dir/share/man
drwxr-xr-x install-dir/share/man/man1
-rw-r--r-- install-dir/share/man/man1/pcre2-config.1
-rw-r--r-- install-dir/share/man/man1/pcre2grep.1
-rw-r--r-- install-dir/share/man/man1/pcre2test.1
drwxr-xr-x install-dir/share/man/man3
-rw-r--r-- install-dir/share/man/man3/pcre2.3
-rw-r--r-- install-dir/share/man/man3/pcre2_callout_enumerate.3
-rw-r--r-- install-dir/share/man/man3/pcre2_code_copy.3
-rw-r--r-- install-dir/share/man/man3/pcre2_code_copy_with_tables.3
-rw-r--r-- install-dir/share/man/man3/pcre2_code_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_compile.3
-rw-r--r-- install-dir/share/man/man3/pcre2_compile_context_copy.3
-rw-r--r-- install-dir/share/man/man3/pcre2_compile_context_create.3
-rw-r--r-- install-dir/share/man/man3/pcre2_compile_context_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_config.3
-rw-r--r-- install-dir/share/man/man3/pcre2_convert_context_copy.3
-rw-r--r-- install-dir/share/man/man3/pcre2_convert_context_create.3
-rw-r--r-- install-dir/share/man/man3/pcre2_convert_context_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_converted_pattern_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_dfa_match.3
-rw-r--r-- install-dir/share/man/man3/pcre2_general_context_copy.3
-rw-r--r-- install-dir/share/man/man3/pcre2_general_context_create.3
-rw-r--r-- install-dir/share/man/man3/pcre2_general_context_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_get_error_message.3
-rw-r--r-- install-dir/share/man/man3/pcre2_get_mark.3
-rw-r--r-- install-dir/share/man/man3/pcre2_get_match_data_heapframes_size.3
-rw-r--r-- install-dir/share/man/man3/pcre2_get_match_data_size.3
-rw-r--r-- install-dir/share/man/man3/pcre2_get_ovector_count.3
-rw-r--r-- install-dir/share/man/man3/pcre2_get_ovector_pointer.3
-rw-r--r-- install-dir/share/man/man3/pcre2_get_startchar.3
-rw-r--r-- install-dir/share/man/man3/pcre2_jit_compile.3
-rw-r--r-- install-dir/share/man/man3/pcre2_jit_free_unused_memory.3
-rw-r--r-- install-dir/share/man/man3/pcre2_jit_match.3
-rw-r--r-- install-dir/share/man/man3/pcre2_jit_stack_assign.3
-rw-r--r-- install-dir/share/man/man3/pcre2_jit_stack_create.3
-rw-r--r-- install-dir/share/man/man3/pcre2_jit_stack_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_maketables.3
-rw-r--r-- install-dir/share/man/man3/pcre2_maketables_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_match.3
-rw-r--r-- install-dir/share/man/man3/pcre2_match_context_copy.3
-rw-r--r-- install-dir/share/man/man3/pcre2_match_context_create.3
-rw-r--r-- install-dir/share/man/man3/pcre2_match_context_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_match_data_create.3
-rw-r--r-- install-dir/share/man/man3/pcre2_match_data_create_from_pattern.3
-rw-r--r-- install-dir/share/man/man3/pcre2_match_data_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_pattern_convert.3
-rw-r--r-- install-dir/share/man/man3/pcre2_pattern_info.3
-rw-r--r-- install-dir/share/man/man3/pcre2_serialize_decode.3
-rw-r--r-- install-dir/share/man/man3/pcre2_serialize_encode.3
-rw-r--r-- install-dir/share/man/man3/pcre2_serialize_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_serialize_get_number_of_codes.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_bsr.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_callout.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_character_tables.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_compile_extra_options.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_compile_recursion_guard.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_depth_limit.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_glob_escape.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_glob_separator.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_heap_limit.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_match_limit.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_max_pattern_compiled_length.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_max_pattern_length.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_max_varlookbehind.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_newline.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_offset_limit.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_optimize.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_parens_nest_limit.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_recursion_limit.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_recursion_memory_management.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_substitute_callout.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_substitute_case_callout.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substitute.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_copy_byname.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_copy_bynumber.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_get_byname.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_get_bynumber.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_length_byname.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_length_bynumber.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_list_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_list_get.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_nametable_scan.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_number_from_name.3
-rw-r--r-- install-dir/share/man/man3/pcre2api.3
-rw-r--r-- install-dir/share/man/man3/pcre2build.3
-rw-r--r-- install-dir/share/man/man3/pcre2callout.3
-rw-r--r-- install-dir/share/man/man3/pcre2compat.3
-rw-r--r-- install-dir/share/man/man3/pcre2convert.3
-rw-r--r-- install-dir/share/man/man3/pcre2demo.3
-rw-r--r-- install-dir/share/man/man3/pcre2jit.3
-rw-r--r-- install-dir/share/man/man3/pcre2limits.3
-rw-r--r-- install-dir/share/man/man3/pcre2matching.3
-rw-r--r-- install-dir/share/man/man3/pcre2partial.3
-rw-r--r-- install-dir/share/man/man3/pcre2pattern.3
-rw-r--r-- install-dir/share/man/man3/pcre2perform.3
-rw-r--r-- install-dir/share/man/man3/pcre2posix.3
-rw-r--r-- install-dir/share/man/man3/pcre2sample.3
-rw-r--r-- install-dir/share/man/man3/pcre2serialize.3
-rw-r--r-- install-dir/share/man/man3/pcre2syntax.3
-rw-r--r-- install-dir/share/man/man3/pcre2unicode.3

View File

@@ -0,0 +1,253 @@
drwxr-xr-x install-dir
drwxr-xr-x install-dir/bin
-rwxr-xr-x install-dir/bin/pcre2-config
-rwxr-xr-x install-dir/bin/pcre2grep
-rwxr-xr-x install-dir/bin/pcre2test
drwxr-xr-x install-dir/include
-rw-r--r-- install-dir/include/pcre2.h
-rw-r--r-- install-dir/include/pcre2posix.h
drwxr-xr-x install-dir/lib
drwxr-xr-x install-dir/lib/cmake
drwxr-xr-x install-dir/lib/cmake/pcre2
-rw-r--r-- install-dir/lib/cmake/pcre2/pcre2-config-version.cmake
-rw-r--r-- install-dir/lib/cmake/pcre2/pcre2-config.cmake
-rwxr-xr-x install-dir/lib/libpcre2-16.0.13.0.dylib
lrwxr-xr-x install-dir/lib/libpcre2-16.0.dylib -> libpcre2-16.0.13.0.dylib
-rw-r--r-- install-dir/lib/libpcre2-16.a
lrwxr-xr-x install-dir/lib/libpcre2-16.dylib -> libpcre2-16.0.dylib
-rwxr-xr-x install-dir/lib/libpcre2-32.0.13.0.dylib
lrwxr-xr-x install-dir/lib/libpcre2-32.0.dylib -> libpcre2-32.0.13.0.dylib
-rw-r--r-- install-dir/lib/libpcre2-32.a
lrwxr-xr-x install-dir/lib/libpcre2-32.dylib -> libpcre2-32.0.dylib
-rwxr-xr-x install-dir/lib/libpcre2-8.0.13.0.dylib
lrwxr-xr-x install-dir/lib/libpcre2-8.0.dylib -> libpcre2-8.0.13.0.dylib
-rw-r--r-- install-dir/lib/libpcre2-8.a
lrwxr-xr-x install-dir/lib/libpcre2-8.dylib -> libpcre2-8.0.dylib
-rwxr-xr-x install-dir/lib/libpcre2-posix.3.0.5.dylib
lrwxr-xr-x install-dir/lib/libpcre2-posix.3.dylib -> libpcre2-posix.3.0.5.dylib
-rw-r--r-- install-dir/lib/libpcre2-posix.a
lrwxr-xr-x install-dir/lib/libpcre2-posix.dylib -> libpcre2-posix.3.dylib
drwxr-xr-x install-dir/lib/pkgconfig
-rw-r--r-- install-dir/lib/pkgconfig/libpcre2-16.pc
-rw-r--r-- install-dir/lib/pkgconfig/libpcre2-32.pc
-rw-r--r-- install-dir/lib/pkgconfig/libpcre2-8.pc
-rw-r--r-- install-dir/lib/pkgconfig/libpcre2-posix.pc
drwxr-xr-x install-dir/share
drwxr-xr-x install-dir/share/doc
drwxr-xr-x install-dir/share/doc/pcre2
-rw-r--r-- install-dir/share/doc/pcre2/AUTHORS.md
-rw-r--r-- install-dir/share/doc/pcre2/COPYING
-rw-r--r-- install-dir/share/doc/pcre2/ChangeLog
-rw-r--r-- install-dir/share/doc/pcre2/LICENCE.md
-rw-r--r-- install-dir/share/doc/pcre2/NEWS
-rw-r--r-- install-dir/share/doc/pcre2/README
-rw-r--r-- install-dir/share/doc/pcre2/SECURITY.md
drwxr-xr-x install-dir/share/doc/pcre2/html
-rw-r--r-- install-dir/share/doc/pcre2/html/NON-AUTOTOOLS-BUILD.txt
-rw-r--r-- install-dir/share/doc/pcre2/html/README.txt
-rw-r--r-- install-dir/share/doc/pcre2/html/index.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2-config.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_callout_enumerate.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_code_copy.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_code_copy_with_tables.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_code_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_compile.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_compile_context_copy.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_compile_context_create.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_compile_context_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_config.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_convert_context_copy.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_convert_context_create.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_convert_context_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_converted_pattern_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_dfa_match.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_general_context_copy.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_general_context_create.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_general_context_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_get_error_message.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_get_mark.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_get_match_data_heapframes_size.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_get_match_data_size.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_get_ovector_count.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_get_ovector_pointer.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_get_startchar.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_jit_compile.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_jit_free_unused_memory.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_jit_match.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_jit_stack_assign.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_jit_stack_create.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_jit_stack_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_maketables.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_maketables_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_match.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_match_context_copy.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_match_context_create.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_match_context_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_match_data_create.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_match_data_create_from_pattern.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_match_data_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_pattern_convert.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_pattern_info.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_serialize_decode.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_serialize_encode.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_serialize_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_serialize_get_number_of_codes.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_bsr.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_callout.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_character_tables.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_compile_extra_options.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_compile_recursion_guard.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_depth_limit.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_glob_escape.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_glob_separator.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_heap_limit.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_match_limit.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_max_pattern_compiled_length.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_max_pattern_length.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_max_varlookbehind.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_newline.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_offset_limit.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_optimize.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_parens_nest_limit.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_recursion_limit.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_recursion_memory_management.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_substitute_callout.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_set_substitute_case_callout.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substitute.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_copy_byname.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_copy_bynumber.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_get_byname.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_get_bynumber.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_length_byname.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_length_bynumber.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_list_free.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_list_get.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_nametable_scan.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2_substring_number_from_name.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2api.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2build.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2callout.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2compat.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2convert.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2demo.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2grep.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2jit.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2limits.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2matching.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2partial.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2pattern.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2perform.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2posix.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2sample.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2serialize.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2syntax.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2test.html
-rw-r--r-- install-dir/share/doc/pcre2/html/pcre2unicode.html
-rw-r--r-- install-dir/share/doc/pcre2/pcre2-config.txt
-rw-r--r-- install-dir/share/doc/pcre2/pcre2.txt
-rw-r--r-- install-dir/share/doc/pcre2/pcre2grep.txt
-rw-r--r-- install-dir/share/doc/pcre2/pcre2test.txt
drwxr-xr-x install-dir/share/man
drwxr-xr-x install-dir/share/man/man1
-rw-r--r-- install-dir/share/man/man1/pcre2-config.1
-rw-r--r-- install-dir/share/man/man1/pcre2grep.1
-rw-r--r-- install-dir/share/man/man1/pcre2test.1
drwxr-xr-x install-dir/share/man/man3
-rw-r--r-- install-dir/share/man/man3/pcre2.3
-rw-r--r-- install-dir/share/man/man3/pcre2_callout_enumerate.3
-rw-r--r-- install-dir/share/man/man3/pcre2_code_copy.3
-rw-r--r-- install-dir/share/man/man3/pcre2_code_copy_with_tables.3
-rw-r--r-- install-dir/share/man/man3/pcre2_code_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_compile.3
-rw-r--r-- install-dir/share/man/man3/pcre2_compile_context_copy.3
-rw-r--r-- install-dir/share/man/man3/pcre2_compile_context_create.3
-rw-r--r-- install-dir/share/man/man3/pcre2_compile_context_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_config.3
-rw-r--r-- install-dir/share/man/man3/pcre2_convert_context_copy.3
-rw-r--r-- install-dir/share/man/man3/pcre2_convert_context_create.3
-rw-r--r-- install-dir/share/man/man3/pcre2_convert_context_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_converted_pattern_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_dfa_match.3
-rw-r--r-- install-dir/share/man/man3/pcre2_general_context_copy.3
-rw-r--r-- install-dir/share/man/man3/pcre2_general_context_create.3
-rw-r--r-- install-dir/share/man/man3/pcre2_general_context_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_get_error_message.3
-rw-r--r-- install-dir/share/man/man3/pcre2_get_mark.3
-rw-r--r-- install-dir/share/man/man3/pcre2_get_match_data_heapframes_size.3
-rw-r--r-- install-dir/share/man/man3/pcre2_get_match_data_size.3
-rw-r--r-- install-dir/share/man/man3/pcre2_get_ovector_count.3
-rw-r--r-- install-dir/share/man/man3/pcre2_get_ovector_pointer.3
-rw-r--r-- install-dir/share/man/man3/pcre2_get_startchar.3
-rw-r--r-- install-dir/share/man/man3/pcre2_jit_compile.3
-rw-r--r-- install-dir/share/man/man3/pcre2_jit_free_unused_memory.3
-rw-r--r-- install-dir/share/man/man3/pcre2_jit_match.3
-rw-r--r-- install-dir/share/man/man3/pcre2_jit_stack_assign.3
-rw-r--r-- install-dir/share/man/man3/pcre2_jit_stack_create.3
-rw-r--r-- install-dir/share/man/man3/pcre2_jit_stack_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_maketables.3
-rw-r--r-- install-dir/share/man/man3/pcre2_maketables_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_match.3
-rw-r--r-- install-dir/share/man/man3/pcre2_match_context_copy.3
-rw-r--r-- install-dir/share/man/man3/pcre2_match_context_create.3
-rw-r--r-- install-dir/share/man/man3/pcre2_match_context_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_match_data_create.3
-rw-r--r-- install-dir/share/man/man3/pcre2_match_data_create_from_pattern.3
-rw-r--r-- install-dir/share/man/man3/pcre2_match_data_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_pattern_convert.3
-rw-r--r-- install-dir/share/man/man3/pcre2_pattern_info.3
-rw-r--r-- install-dir/share/man/man3/pcre2_serialize_decode.3
-rw-r--r-- install-dir/share/man/man3/pcre2_serialize_encode.3
-rw-r--r-- install-dir/share/man/man3/pcre2_serialize_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_serialize_get_number_of_codes.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_bsr.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_callout.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_character_tables.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_compile_extra_options.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_compile_recursion_guard.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_depth_limit.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_glob_escape.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_glob_separator.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_heap_limit.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_match_limit.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_max_pattern_compiled_length.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_max_pattern_length.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_max_varlookbehind.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_newline.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_offset_limit.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_optimize.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_parens_nest_limit.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_recursion_limit.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_recursion_memory_management.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_substitute_callout.3
-rw-r--r-- install-dir/share/man/man3/pcre2_set_substitute_case_callout.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substitute.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_copy_byname.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_copy_bynumber.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_get_byname.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_get_bynumber.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_length_byname.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_length_bynumber.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_list_free.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_list_get.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_nametable_scan.3
-rw-r--r-- install-dir/share/man/man3/pcre2_substring_number_from_name.3
-rw-r--r-- install-dir/share/man/man3/pcre2api.3
-rw-r--r-- install-dir/share/man/man3/pcre2build.3
-rw-r--r-- install-dir/share/man/man3/pcre2callout.3
-rw-r--r-- install-dir/share/man/man3/pcre2compat.3
-rw-r--r-- install-dir/share/man/man3/pcre2convert.3
-rw-r--r-- install-dir/share/man/man3/pcre2demo.3
-rw-r--r-- install-dir/share/man/man3/pcre2jit.3
-rw-r--r-- install-dir/share/man/man3/pcre2limits.3
-rw-r--r-- install-dir/share/man/man3/pcre2matching.3
-rw-r--r-- install-dir/share/man/man3/pcre2partial.3
-rw-r--r-- install-dir/share/man/man3/pcre2pattern.3
-rw-r--r-- install-dir/share/man/man3/pcre2perform.3
-rw-r--r-- install-dir/share/man/man3/pcre2posix.3
-rw-r--r-- install-dir/share/man/man3/pcre2sample.3
-rw-r--r-- install-dir/share/man/man3/pcre2serialize.3
-rw-r--r-- install-dir/share/man/man3/pcre2syntax.3
-rw-r--r-- install-dir/share/man/man3/pcre2unicode.3

View File

@@ -0,0 +1,248 @@
d---- .\install-dir\bin
-a--- .\install-dir\bin\pcre2-16.dll
-a--- .\install-dir\bin\pcre2-32.dll
-a--- .\install-dir\bin\pcre2-8.dll
-a--- .\install-dir\bin\pcre2-config
-a--- .\install-dir\bin\pcre2-posix.dll
-a--- .\install-dir\bin\pcre2grep.exe
-a--- .\install-dir\bin\pcre2test.exe
d---- .\install-dir\include
-a--- .\install-dir\include\pcre2.h
-a--- .\install-dir\include\pcre2posix.h
d---- .\install-dir\lib
d---- .\install-dir\lib\cmake
d---- .\install-dir\lib\cmake\pcre2
-a--- .\install-dir\lib\cmake\pcre2\pcre2-config-version.cmake
-a--- .\install-dir\lib\cmake\pcre2\pcre2-config.cmake
-a--- .\install-dir\lib\pcre2-16-static.lib
-a--- .\install-dir\lib\pcre2-16.lib
-a--- .\install-dir\lib\pcre2-32-static.lib
-a--- .\install-dir\lib\pcre2-32.lib
-a--- .\install-dir\lib\pcre2-8-static.lib
-a--- .\install-dir\lib\pcre2-8.lib
-a--- .\install-dir\lib\pcre2-posix-static.lib
-a--- .\install-dir\lib\pcre2-posix.lib
d---- .\install-dir\lib\pkgconfig
-a--- .\install-dir\lib\pkgconfig\libpcre2-16.pc
-a--- .\install-dir\lib\pkgconfig\libpcre2-32.pc
-a--- .\install-dir\lib\pkgconfig\libpcre2-8.pc
-a--- .\install-dir\lib\pkgconfig\libpcre2-posix.pc
d---- .\install-dir\share
d---- .\install-dir\share\doc
d---- .\install-dir\share\doc\pcre2
-a--- .\install-dir\share\doc\pcre2\AUTHORS.md
-a--- .\install-dir\share\doc\pcre2\COPYING
-a--- .\install-dir\share\doc\pcre2\ChangeLog
-a--- .\install-dir\share\doc\pcre2\LICENCE.md
-a--- .\install-dir\share\doc\pcre2\NEWS
-a--- .\install-dir\share\doc\pcre2\README
-a--- .\install-dir\share\doc\pcre2\SECURITY.md
d---- .\install-dir\share\doc\pcre2\html
-a--- .\install-dir\share\doc\pcre2\html\NON-AUTOTOOLS-BUILD.txt
-a--- .\install-dir\share\doc\pcre2\html\README.txt
-a--- .\install-dir\share\doc\pcre2\html\index.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2-config.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_callout_enumerate.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_code_copy.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_code_copy_with_tables.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_code_free.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_compile.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_compile_context_copy.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_compile_context_create.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_compile_context_free.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_config.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_convert_context_copy.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_convert_context_create.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_convert_context_free.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_converted_pattern_free.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_dfa_match.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_general_context_copy.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_general_context_create.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_general_context_free.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_get_error_message.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_get_mark.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_get_match_data_heapframes_size.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_get_match_data_size.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_get_ovector_count.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_get_ovector_pointer.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_get_startchar.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_jit_compile.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_jit_free_unused_memory.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_jit_match.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_jit_stack_assign.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_jit_stack_create.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_jit_stack_free.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_maketables.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_maketables_free.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_match.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_match_context_copy.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_match_context_create.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_match_context_free.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_match_data_create.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_match_data_create_from_pattern.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_match_data_free.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_pattern_convert.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_pattern_info.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_serialize_decode.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_serialize_encode.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_serialize_free.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_serialize_get_number_of_codes.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_set_bsr.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_set_callout.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_set_character_tables.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_set_compile_extra_options.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_set_compile_recursion_guard.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_set_depth_limit.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_set_glob_escape.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_set_glob_separator.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_set_heap_limit.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_set_match_limit.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_set_max_pattern_compiled_length.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_set_max_pattern_length.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_set_max_varlookbehind.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_set_newline.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_set_offset_limit.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_set_optimize.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_set_parens_nest_limit.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_set_recursion_limit.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_set_recursion_memory_management.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_set_substitute_callout.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_set_substitute_case_callout.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_substitute.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_substring_copy_byname.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_substring_copy_bynumber.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_substring_free.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_substring_get_byname.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_substring_get_bynumber.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_substring_length_byname.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_substring_length_bynumber.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_substring_list_free.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_substring_list_get.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_substring_nametable_scan.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2_substring_number_from_name.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2api.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2build.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2callout.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2compat.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2convert.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2demo.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2grep.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2jit.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2limits.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2matching.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2partial.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2pattern.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2perform.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2posix.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2sample.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2serialize.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2syntax.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2test.html
-a--- .\install-dir\share\doc\pcre2\html\pcre2unicode.html
-a--- .\install-dir\share\doc\pcre2\pcre2-config.txt
-a--- .\install-dir\share\doc\pcre2\pcre2.txt
-a--- .\install-dir\share\doc\pcre2\pcre2grep.txt
-a--- .\install-dir\share\doc\pcre2\pcre2test.txt
d---- .\install-dir\share\man
d---- .\install-dir\share\man\man1
-a--- .\install-dir\share\man\man1\pcre2-config.1
-a--- .\install-dir\share\man\man1\pcre2grep.1
-a--- .\install-dir\share\man\man1\pcre2test.1
d---- .\install-dir\share\man\man3
-a--- .\install-dir\share\man\man3\pcre2.3
-a--- .\install-dir\share\man\man3\pcre2_callout_enumerate.3
-a--- .\install-dir\share\man\man3\pcre2_code_copy.3
-a--- .\install-dir\share\man\man3\pcre2_code_copy_with_tables.3
-a--- .\install-dir\share\man\man3\pcre2_code_free.3
-a--- .\install-dir\share\man\man3\pcre2_compile.3
-a--- .\install-dir\share\man\man3\pcre2_compile_context_copy.3
-a--- .\install-dir\share\man\man3\pcre2_compile_context_create.3
-a--- .\install-dir\share\man\man3\pcre2_compile_context_free.3
-a--- .\install-dir\share\man\man3\pcre2_config.3
-a--- .\install-dir\share\man\man3\pcre2_convert_context_copy.3
-a--- .\install-dir\share\man\man3\pcre2_convert_context_create.3
-a--- .\install-dir\share\man\man3\pcre2_convert_context_free.3
-a--- .\install-dir\share\man\man3\pcre2_converted_pattern_free.3
-a--- .\install-dir\share\man\man3\pcre2_dfa_match.3
-a--- .\install-dir\share\man\man3\pcre2_general_context_copy.3
-a--- .\install-dir\share\man\man3\pcre2_general_context_create.3
-a--- .\install-dir\share\man\man3\pcre2_general_context_free.3
-a--- .\install-dir\share\man\man3\pcre2_get_error_message.3
-a--- .\install-dir\share\man\man3\pcre2_get_mark.3
-a--- .\install-dir\share\man\man3\pcre2_get_match_data_heapframes_size.3
-a--- .\install-dir\share\man\man3\pcre2_get_match_data_size.3
-a--- .\install-dir\share\man\man3\pcre2_get_ovector_count.3
-a--- .\install-dir\share\man\man3\pcre2_get_ovector_pointer.3
-a--- .\install-dir\share\man\man3\pcre2_get_startchar.3
-a--- .\install-dir\share\man\man3\pcre2_jit_compile.3
-a--- .\install-dir\share\man\man3\pcre2_jit_free_unused_memory.3
-a--- .\install-dir\share\man\man3\pcre2_jit_match.3
-a--- .\install-dir\share\man\man3\pcre2_jit_stack_assign.3
-a--- .\install-dir\share\man\man3\pcre2_jit_stack_create.3
-a--- .\install-dir\share\man\man3\pcre2_jit_stack_free.3
-a--- .\install-dir\share\man\man3\pcre2_maketables.3
-a--- .\install-dir\share\man\man3\pcre2_maketables_free.3
-a--- .\install-dir\share\man\man3\pcre2_match.3
-a--- .\install-dir\share\man\man3\pcre2_match_context_copy.3
-a--- .\install-dir\share\man\man3\pcre2_match_context_create.3
-a--- .\install-dir\share\man\man3\pcre2_match_context_free.3
-a--- .\install-dir\share\man\man3\pcre2_match_data_create.3
-a--- .\install-dir\share\man\man3\pcre2_match_data_create_from_pattern.3
-a--- .\install-dir\share\man\man3\pcre2_match_data_free.3
-a--- .\install-dir\share\man\man3\pcre2_pattern_convert.3
-a--- .\install-dir\share\man\man3\pcre2_pattern_info.3
-a--- .\install-dir\share\man\man3\pcre2_serialize_decode.3
-a--- .\install-dir\share\man\man3\pcre2_serialize_encode.3
-a--- .\install-dir\share\man\man3\pcre2_serialize_free.3
-a--- .\install-dir\share\man\man3\pcre2_serialize_get_number_of_codes.3
-a--- .\install-dir\share\man\man3\pcre2_set_bsr.3
-a--- .\install-dir\share\man\man3\pcre2_set_callout.3
-a--- .\install-dir\share\man\man3\pcre2_set_character_tables.3
-a--- .\install-dir\share\man\man3\pcre2_set_compile_extra_options.3
-a--- .\install-dir\share\man\man3\pcre2_set_compile_recursion_guard.3
-a--- .\install-dir\share\man\man3\pcre2_set_depth_limit.3
-a--- .\install-dir\share\man\man3\pcre2_set_glob_escape.3
-a--- .\install-dir\share\man\man3\pcre2_set_glob_separator.3
-a--- .\install-dir\share\man\man3\pcre2_set_heap_limit.3
-a--- .\install-dir\share\man\man3\pcre2_set_match_limit.3
-a--- .\install-dir\share\man\man3\pcre2_set_max_pattern_compiled_length.3
-a--- .\install-dir\share\man\man3\pcre2_set_max_pattern_length.3
-a--- .\install-dir\share\man\man3\pcre2_set_max_varlookbehind.3
-a--- .\install-dir\share\man\man3\pcre2_set_newline.3
-a--- .\install-dir\share\man\man3\pcre2_set_offset_limit.3
-a--- .\install-dir\share\man\man3\pcre2_set_optimize.3
-a--- .\install-dir\share\man\man3\pcre2_set_parens_nest_limit.3
-a--- .\install-dir\share\man\man3\pcre2_set_recursion_limit.3
-a--- .\install-dir\share\man\man3\pcre2_set_recursion_memory_management.3
-a--- .\install-dir\share\man\man3\pcre2_set_substitute_callout.3
-a--- .\install-dir\share\man\man3\pcre2_set_substitute_case_callout.3
-a--- .\install-dir\share\man\man3\pcre2_substitute.3
-a--- .\install-dir\share\man\man3\pcre2_substring_copy_byname.3
-a--- .\install-dir\share\man\man3\pcre2_substring_copy_bynumber.3
-a--- .\install-dir\share\man\man3\pcre2_substring_free.3
-a--- .\install-dir\share\man\man3\pcre2_substring_get_byname.3
-a--- .\install-dir\share\man\man3\pcre2_substring_get_bynumber.3
-a--- .\install-dir\share\man\man3\pcre2_substring_length_byname.3
-a--- .\install-dir\share\man\man3\pcre2_substring_length_bynumber.3
-a--- .\install-dir\share\man\man3\pcre2_substring_list_free.3
-a--- .\install-dir\share\man\man3\pcre2_substring_list_get.3
-a--- .\install-dir\share\man\man3\pcre2_substring_nametable_scan.3
-a--- .\install-dir\share\man\man3\pcre2_substring_number_from_name.3
-a--- .\install-dir\share\man\man3\pcre2api.3
-a--- .\install-dir\share\man\man3\pcre2build.3
-a--- .\install-dir\share\man\man3\pcre2callout.3
-a--- .\install-dir\share\man\man3\pcre2compat.3
-a--- .\install-dir\share\man\man3\pcre2convert.3
-a--- .\install-dir\share\man\man3\pcre2demo.3
-a--- .\install-dir\share\man\man3\pcre2jit.3
-a--- .\install-dir\share\man\man3\pcre2limits.3
-a--- .\install-dir\share\man\man3\pcre2matching.3
-a--- .\install-dir\share\man\man3\pcre2partial.3
-a--- .\install-dir\share\man\man3\pcre2pattern.3
-a--- .\install-dir\share\man\man3\pcre2perform.3
-a--- .\install-dir\share\man\man3\pcre2posix.3
-a--- .\install-dir\share\man\man3\pcre2sample.3
-a--- .\install-dir\share\man\man3\pcre2serialize.3
-a--- .\install-dir\share\man\man3\pcre2syntax.3
-a--- .\install-dir\share\man\man3\pcre2unicode.3

View File

@@ -0,0 +1,255 @@
drwxr-xr-x install-dir
drwxr-xr-x install-dir/usr
drwxr-xr-x install-dir/usr/local
drwxr-xr-x install-dir/usr/local/bin
-rwxr-xr-x install-dir/usr/local/bin/pcre2-config
-rwxr-xr-x install-dir/usr/local/bin/pcre2grep
-rwxr-xr-x install-dir/usr/local/bin/pcre2test
drwxr-xr-x install-dir/usr/local/include
-rw-r--r-- install-dir/usr/local/include/pcre2.h
-rw-r--r-- install-dir/usr/local/include/pcre2posix.h
drwxr-xr-x install-dir/usr/local/lib
-rw-r--r-- install-dir/usr/local/lib/libpcre2-16.a
-rwxr-xr-x install-dir/usr/local/lib/libpcre2-16.la
lrwxr-xr-x install-dir/usr/local/lib/libpcre2-16.so -> libpcre2-16.so.0.13.0
lrwxr-xr-x install-dir/usr/local/lib/libpcre2-16.so.0 -> libpcre2-16.so.0.13.0
-rwxr-xr-x install-dir/usr/local/lib/libpcre2-16.so.0.13.0
-rw-r--r-- install-dir/usr/local/lib/libpcre2-32.a
-rwxr-xr-x install-dir/usr/local/lib/libpcre2-32.la
lrwxr-xr-x install-dir/usr/local/lib/libpcre2-32.so -> libpcre2-32.so.0.13.0
lrwxr-xr-x install-dir/usr/local/lib/libpcre2-32.so.0 -> libpcre2-32.so.0.13.0
-rwxr-xr-x install-dir/usr/local/lib/libpcre2-32.so.0.13.0
-rw-r--r-- install-dir/usr/local/lib/libpcre2-8.a
-rwxr-xr-x install-dir/usr/local/lib/libpcre2-8.la
lrwxr-xr-x install-dir/usr/local/lib/libpcre2-8.so -> libpcre2-8.so.0.13.0
lrwxr-xr-x install-dir/usr/local/lib/libpcre2-8.so.0 -> libpcre2-8.so.0.13.0
-rwxr-xr-x install-dir/usr/local/lib/libpcre2-8.so.0.13.0
-rw-r--r-- install-dir/usr/local/lib/libpcre2-posix.a
-rwxr-xr-x install-dir/usr/local/lib/libpcre2-posix.la
lrwxr-xr-x install-dir/usr/local/lib/libpcre2-posix.so -> libpcre2-posix.so.3.0.5
lrwxr-xr-x install-dir/usr/local/lib/libpcre2-posix.so.3 -> libpcre2-posix.so.3.0.5
-rwxr-xr-x install-dir/usr/local/lib/libpcre2-posix.so.3.0.5
drwxr-xr-x install-dir/usr/local/lib/pkgconfig
-rw-r--r-- install-dir/usr/local/lib/pkgconfig/libpcre2-16.pc
-rw-r--r-- install-dir/usr/local/lib/pkgconfig/libpcre2-32.pc
-rw-r--r-- install-dir/usr/local/lib/pkgconfig/libpcre2-8.pc
-rw-r--r-- install-dir/usr/local/lib/pkgconfig/libpcre2-posix.pc
drwxr-xr-x install-dir/usr/local/share
drwxr-xr-x install-dir/usr/local/share/doc
drwxr-xr-x install-dir/usr/local/share/doc/pcre2
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/AUTHORS.md
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/COPYING
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/ChangeLog
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/LICENCE.md
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/NEWS
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/README
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/SECURITY.md
drwxr-xr-x install-dir/usr/local/share/doc/pcre2/html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/NON-AUTOTOOLS-BUILD.txt
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/README.txt
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/index.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2-config.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_callout_enumerate.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_code_copy.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_code_copy_with_tables.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_code_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_compile.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_compile_context_copy.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_compile_context_create.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_compile_context_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_config.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_convert_context_copy.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_convert_context_create.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_convert_context_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_converted_pattern_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_dfa_match.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_general_context_copy.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_general_context_create.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_general_context_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_get_error_message.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_get_mark.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_get_match_data_heapframes_size.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_get_match_data_size.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_get_ovector_count.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_get_ovector_pointer.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_get_startchar.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_jit_compile.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_jit_free_unused_memory.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_jit_match.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_jit_stack_assign.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_jit_stack_create.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_jit_stack_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_maketables.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_maketables_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_match.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_match_context_copy.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_match_context_create.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_match_context_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_match_data_create.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_match_data_create_from_pattern.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_match_data_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_pattern_convert.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_pattern_info.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_serialize_decode.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_serialize_encode.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_serialize_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_serialize_get_number_of_codes.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_bsr.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_callout.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_character_tables.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_compile_extra_options.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_compile_recursion_guard.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_depth_limit.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_glob_escape.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_glob_separator.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_heap_limit.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_match_limit.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_max_pattern_compiled_length.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_max_pattern_length.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_max_varlookbehind.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_newline.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_offset_limit.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_optimize.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_parens_nest_limit.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_recursion_limit.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_recursion_memory_management.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_substitute_callout.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_substitute_case_callout.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substitute.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_copy_byname.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_copy_bynumber.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_get_byname.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_get_bynumber.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_length_byname.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_length_bynumber.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_list_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_list_get.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_nametable_scan.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_number_from_name.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2api.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2build.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2callout.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2compat.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2convert.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2demo.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2grep.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2jit.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2limits.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2matching.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2partial.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2pattern.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2perform.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2posix.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2sample.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2serialize.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2syntax.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2test.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2unicode.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/pcre2-config.txt
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/pcre2.txt
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/pcre2grep.txt
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/pcre2test.txt
drwxr-xr-x install-dir/usr/local/share/man
drwxr-xr-x install-dir/usr/local/share/man/man1
-rw-r--r-- install-dir/usr/local/share/man/man1/pcre2-config.1
-rw-r--r-- install-dir/usr/local/share/man/man1/pcre2grep.1
-rw-r--r-- install-dir/usr/local/share/man/man1/pcre2test.1
drwxr-xr-x install-dir/usr/local/share/man/man3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_callout_enumerate.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_code_copy.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_code_copy_with_tables.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_code_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_compile.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_compile_context_copy.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_compile_context_create.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_compile_context_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_config.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_convert_context_copy.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_convert_context_create.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_convert_context_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_converted_pattern_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_dfa_match.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_general_context_copy.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_general_context_create.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_general_context_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_get_error_message.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_get_mark.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_get_match_data_heapframes_size.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_get_match_data_size.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_get_ovector_count.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_get_ovector_pointer.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_get_startchar.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_jit_compile.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_jit_free_unused_memory.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_jit_match.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_jit_stack_assign.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_jit_stack_create.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_jit_stack_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_maketables.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_maketables_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_match.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_match_context_copy.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_match_context_create.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_match_context_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_match_data_create.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_match_data_create_from_pattern.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_match_data_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_pattern_convert.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_pattern_info.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_serialize_decode.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_serialize_encode.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_serialize_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_serialize_get_number_of_codes.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_bsr.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_callout.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_character_tables.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_compile_extra_options.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_compile_recursion_guard.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_depth_limit.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_glob_escape.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_glob_separator.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_heap_limit.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_match_limit.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_max_pattern_compiled_length.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_max_pattern_length.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_max_varlookbehind.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_newline.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_offset_limit.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_optimize.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_parens_nest_limit.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_recursion_limit.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_recursion_memory_management.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_substitute_callout.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_substitute_case_callout.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substitute.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_copy_byname.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_copy_bynumber.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_get_byname.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_get_bynumber.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_length_byname.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_length_bynumber.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_list_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_list_get.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_nametable_scan.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_number_from_name.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2api.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2build.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2callout.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2compat.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2convert.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2demo.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2jit.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2limits.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2matching.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2partial.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2pattern.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2perform.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2posix.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2sample.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2serialize.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2syntax.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2unicode.3

View File

@@ -0,0 +1,255 @@
drwxr-xr-x install-dir
drwxr-xr-x install-dir/usr
drwxr-xr-x install-dir/usr/local
drwxr-xr-x install-dir/usr/local/bin
-rwxr-xr-x install-dir/usr/local/bin/pcre2-config
-rwxr-xr-x install-dir/usr/local/bin/pcre2grep
-rwxr-xr-x install-dir/usr/local/bin/pcre2test
drwxr-xr-x install-dir/usr/local/include
-rw-r--r-- install-dir/usr/local/include/pcre2.h
-rw-r--r-- install-dir/usr/local/include/pcre2posix.h
drwxr-xr-x install-dir/usr/local/lib
-rw-r--r-- install-dir/usr/local/lib/libpcre2-16.a
-rwxr-xr-x install-dir/usr/local/lib/libpcre2-16.la
lrwxrwxrwx install-dir/usr/local/lib/libpcre2-16.so -> libpcre2-16.so.0.13.0
lrwxrwxrwx install-dir/usr/local/lib/libpcre2-16.so.0 -> libpcre2-16.so.0.13.0
-rwxr-xr-x install-dir/usr/local/lib/libpcre2-16.so.0.13.0
-rw-r--r-- install-dir/usr/local/lib/libpcre2-32.a
-rwxr-xr-x install-dir/usr/local/lib/libpcre2-32.la
lrwxrwxrwx install-dir/usr/local/lib/libpcre2-32.so -> libpcre2-32.so.0.13.0
lrwxrwxrwx install-dir/usr/local/lib/libpcre2-32.so.0 -> libpcre2-32.so.0.13.0
-rwxr-xr-x install-dir/usr/local/lib/libpcre2-32.so.0.13.0
-rw-r--r-- install-dir/usr/local/lib/libpcre2-8.a
-rwxr-xr-x install-dir/usr/local/lib/libpcre2-8.la
lrwxrwxrwx install-dir/usr/local/lib/libpcre2-8.so -> libpcre2-8.so.0.13.0
lrwxrwxrwx install-dir/usr/local/lib/libpcre2-8.so.0 -> libpcre2-8.so.0.13.0
-rwxr-xr-x install-dir/usr/local/lib/libpcre2-8.so.0.13.0
-rw-r--r-- install-dir/usr/local/lib/libpcre2-posix.a
-rwxr-xr-x install-dir/usr/local/lib/libpcre2-posix.la
lrwxrwxrwx install-dir/usr/local/lib/libpcre2-posix.so -> libpcre2-posix.so.3.0.5
lrwxrwxrwx install-dir/usr/local/lib/libpcre2-posix.so.3 -> libpcre2-posix.so.3.0.5
-rwxr-xr-x install-dir/usr/local/lib/libpcre2-posix.so.3.0.5
drwxr-xr-x install-dir/usr/local/lib/pkgconfig
-rw-r--r-- install-dir/usr/local/lib/pkgconfig/libpcre2-16.pc
-rw-r--r-- install-dir/usr/local/lib/pkgconfig/libpcre2-32.pc
-rw-r--r-- install-dir/usr/local/lib/pkgconfig/libpcre2-8.pc
-rw-r--r-- install-dir/usr/local/lib/pkgconfig/libpcre2-posix.pc
drwxr-xr-x install-dir/usr/local/share
drwxr-xr-x install-dir/usr/local/share/doc
drwxr-xr-x install-dir/usr/local/share/doc/pcre2
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/AUTHORS.md
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/COPYING
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/ChangeLog
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/LICENCE.md
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/NEWS
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/README
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/SECURITY.md
drwxr-xr-x install-dir/usr/local/share/doc/pcre2/html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/NON-AUTOTOOLS-BUILD.txt
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/README.txt
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/index.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2-config.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_callout_enumerate.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_code_copy.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_code_copy_with_tables.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_code_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_compile.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_compile_context_copy.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_compile_context_create.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_compile_context_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_config.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_convert_context_copy.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_convert_context_create.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_convert_context_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_converted_pattern_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_dfa_match.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_general_context_copy.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_general_context_create.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_general_context_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_get_error_message.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_get_mark.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_get_match_data_heapframes_size.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_get_match_data_size.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_get_ovector_count.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_get_ovector_pointer.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_get_startchar.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_jit_compile.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_jit_free_unused_memory.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_jit_match.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_jit_stack_assign.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_jit_stack_create.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_jit_stack_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_maketables.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_maketables_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_match.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_match_context_copy.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_match_context_create.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_match_context_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_match_data_create.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_match_data_create_from_pattern.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_match_data_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_pattern_convert.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_pattern_info.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_serialize_decode.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_serialize_encode.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_serialize_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_serialize_get_number_of_codes.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_bsr.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_callout.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_character_tables.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_compile_extra_options.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_compile_recursion_guard.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_depth_limit.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_glob_escape.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_glob_separator.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_heap_limit.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_match_limit.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_max_pattern_compiled_length.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_max_pattern_length.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_max_varlookbehind.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_newline.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_offset_limit.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_optimize.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_parens_nest_limit.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_recursion_limit.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_recursion_memory_management.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_substitute_callout.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_set_substitute_case_callout.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substitute.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_copy_byname.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_copy_bynumber.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_get_byname.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_get_bynumber.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_length_byname.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_length_bynumber.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_list_free.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_list_get.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_nametable_scan.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2_substring_number_from_name.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2api.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2build.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2callout.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2compat.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2convert.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2demo.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2grep.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2jit.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2limits.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2matching.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2partial.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2pattern.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2perform.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2posix.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2sample.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2serialize.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2syntax.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2test.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/html/pcre2unicode.html
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/pcre2-config.txt
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/pcre2.txt
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/pcre2grep.txt
-rw-r--r-- install-dir/usr/local/share/doc/pcre2/pcre2test.txt
drwxr-xr-x install-dir/usr/local/share/man
drwxr-xr-x install-dir/usr/local/share/man/man1
-rw-r--r-- install-dir/usr/local/share/man/man1/pcre2-config.1
-rw-r--r-- install-dir/usr/local/share/man/man1/pcre2grep.1
-rw-r--r-- install-dir/usr/local/share/man/man1/pcre2test.1
drwxr-xr-x install-dir/usr/local/share/man/man3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_callout_enumerate.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_code_copy.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_code_copy_with_tables.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_code_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_compile.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_compile_context_copy.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_compile_context_create.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_compile_context_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_config.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_convert_context_copy.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_convert_context_create.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_convert_context_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_converted_pattern_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_dfa_match.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_general_context_copy.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_general_context_create.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_general_context_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_get_error_message.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_get_mark.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_get_match_data_heapframes_size.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_get_match_data_size.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_get_ovector_count.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_get_ovector_pointer.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_get_startchar.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_jit_compile.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_jit_free_unused_memory.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_jit_match.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_jit_stack_assign.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_jit_stack_create.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_jit_stack_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_maketables.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_maketables_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_match.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_match_context_copy.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_match_context_create.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_match_context_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_match_data_create.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_match_data_create_from_pattern.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_match_data_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_pattern_convert.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_pattern_info.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_serialize_decode.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_serialize_encode.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_serialize_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_serialize_get_number_of_codes.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_bsr.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_callout.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_character_tables.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_compile_extra_options.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_compile_recursion_guard.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_depth_limit.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_glob_escape.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_glob_separator.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_heap_limit.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_match_limit.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_max_pattern_compiled_length.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_max_pattern_length.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_max_varlookbehind.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_newline.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_offset_limit.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_optimize.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_parens_nest_limit.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_recursion_limit.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_recursion_memory_management.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_substitute_callout.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_set_substitute_case_callout.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substitute.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_copy_byname.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_copy_bynumber.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_get_byname.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_get_bynumber.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_length_byname.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_length_bynumber.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_list_free.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_list_get.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_nametable_scan.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2_substring_number_from_name.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2api.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2build.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2callout.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2compat.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2convert.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2demo.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2jit.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2limits.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2matching.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2partial.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2pattern.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2perform.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2posix.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2sample.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2serialize.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2syntax.3
-rw-r--r-- install-dir/usr/local/share/man/man3/pcre2unicode.3

467
maint/manifest-tarball Normal file
View File

@@ -0,0 +1,467 @@
drwxr-xr-x tarball-dir
drwxr-xr-x tarball-dir/pcre2-SNAPSHOT
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/AUTHORS.md
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/BUILD.bazel
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/CMakeLists.txt
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/COPYING
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/ChangeLog
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/HACKING
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/INSTALL
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/LICENCE.md
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/MODULE.bazel
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/Makefile.am
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/Makefile.in
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/NEWS
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/NON-AUTOTOOLS-BUILD
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/README
-rwxr-xr-x tarball-dir/pcre2-SNAPSHOT/RunGrepTest
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/RunGrepTest.bat
-rwxr-xr-x tarball-dir/pcre2-SNAPSHOT/RunTest
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/RunTest.bat
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/SECURITY.md
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/WORKSPACE.bazel
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/aclocal.m4
-rwxr-xr-x tarball-dir/pcre2-SNAPSHOT/ar-lib
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/build.zig
drwxr-xr-x tarball-dir/pcre2-SNAPSHOT/cmake
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/cmake/COPYING-CMAKE-SCRIPTS
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/cmake/FindEditline.cmake
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/cmake/FindReadline.cmake
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/cmake/pcre2-config-version.cmake.in
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/cmake/pcre2-config.cmake.in
-rwxr-xr-x tarball-dir/pcre2-SNAPSHOT/compile
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/config-cmake.h.in
-rwxr-xr-x tarball-dir/pcre2-SNAPSHOT/config.guess
-rwxr-xr-x tarball-dir/pcre2-SNAPSHOT/config.sub
-rwxr-xr-x tarball-dir/pcre2-SNAPSHOT/configure
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/configure.ac
-rwxr-xr-x tarball-dir/pcre2-SNAPSHOT/depcomp
drwxr-xr-x tarball-dir/pcre2-SNAPSHOT/deps
drwxr-xr-x tarball-dir/pcre2-SNAPSHOT/deps/sljit
drwxr-xr-x tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src
drwxr-xr-x tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/allocator_src
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/allocator_src/sljitExecAllocatorApple.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/allocator_src/sljitExecAllocatorCore.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/allocator_src/sljitExecAllocatorFreeBSD.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/allocator_src/sljitExecAllocatorPosix.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/allocator_src/sljitExecAllocatorWindows.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/allocator_src/sljitProtExecAllocatorNetBSD.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/allocator_src/sljitProtExecAllocatorPosix.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/allocator_src/sljitWXExecAllocatorPosix.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/allocator_src/sljitWXExecAllocatorWindows.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitConfig.h
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitConfigCPU.h
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitConfigInternal.h
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitLir.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitLir.h
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitNativeARM_32.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitNativeARM_64.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitNativeARM_T2_32.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitNativeLOONGARCH_64.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitNativeMIPS_32.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitNativeMIPS_64.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitNativeMIPS_common.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitNativePPC_32.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitNativePPC_64.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitNativePPC_common.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitNativeRISCV_32.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitNativeRISCV_64.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitNativeRISCV_common.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitNativeS390X.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitNativeX86_32.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitNativeX86_64.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitNativeX86_common.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitSerialize.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/deps/sljit/sljit_src/sljitUtils.c
drwxr-xr-x tarball-dir/pcre2-SNAPSHOT/doc
drwxr-xr-x tarball-dir/pcre2-SNAPSHOT/doc/html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/NON-AUTOTOOLS-BUILD.txt
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/README.txt
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/index.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2-config.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_callout_enumerate.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_code_copy.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_code_copy_with_tables.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_code_free.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_compile.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_compile_context_copy.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_compile_context_create.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_compile_context_free.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_config.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_convert_context_copy.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_convert_context_create.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_convert_context_free.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_converted_pattern_free.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_dfa_match.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_general_context_copy.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_general_context_create.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_general_context_free.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_get_error_message.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_get_mark.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_get_match_data_heapframes_size.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_get_match_data_size.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_get_ovector_count.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_get_ovector_pointer.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_get_startchar.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_jit_compile.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_jit_free_unused_memory.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_jit_match.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_jit_stack_assign.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_jit_stack_create.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_jit_stack_free.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_maketables.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_maketables_free.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_match.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_match_context_copy.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_match_context_create.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_match_context_free.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_match_data_create.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_match_data_create_from_pattern.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_match_data_free.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_pattern_convert.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_pattern_info.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_serialize_decode.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_serialize_encode.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_serialize_free.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_serialize_get_number_of_codes.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_set_bsr.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_set_callout.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_set_character_tables.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_set_compile_extra_options.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_set_compile_recursion_guard.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_set_depth_limit.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_set_glob_escape.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_set_glob_separator.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_set_heap_limit.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_set_match_limit.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_set_max_pattern_compiled_length.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_set_max_pattern_length.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_set_max_varlookbehind.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_set_newline.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_set_offset_limit.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_set_optimize.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_set_parens_nest_limit.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_set_recursion_limit.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_set_recursion_memory_management.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_set_substitute_callout.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_set_substitute_case_callout.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_substitute.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_substring_copy_byname.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_substring_copy_bynumber.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_substring_free.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_substring_get_byname.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_substring_get_bynumber.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_substring_length_byname.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_substring_length_bynumber.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_substring_list_free.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_substring_list_get.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_substring_nametable_scan.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2_substring_number_from_name.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2api.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2build.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2callout.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2compat.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2convert.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2demo.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2grep.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2jit.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2limits.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2matching.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2partial.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2pattern.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2perform.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2posix.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2sample.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2serialize.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2syntax.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2test.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/html/pcre2unicode.html
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2-config.1
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2-config.txt
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2.txt
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_callout_enumerate.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_code_copy.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_code_copy_with_tables.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_code_free.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_compile.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_compile_context_copy.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_compile_context_create.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_compile_context_free.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_config.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_convert_context_copy.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_convert_context_create.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_convert_context_free.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_converted_pattern_free.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_dfa_match.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_general_context_copy.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_general_context_create.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_general_context_free.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_get_error_message.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_get_mark.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_get_match_data_heapframes_size.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_get_match_data_size.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_get_ovector_count.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_get_ovector_pointer.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_get_startchar.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_jit_compile.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_jit_free_unused_memory.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_jit_match.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_jit_stack_assign.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_jit_stack_create.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_jit_stack_free.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_maketables.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_maketables_free.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_match.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_match_context_copy.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_match_context_create.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_match_context_free.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_match_data_create.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_match_data_create_from_pattern.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_match_data_free.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_pattern_convert.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_pattern_info.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_serialize_decode.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_serialize_encode.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_serialize_free.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_serialize_get_number_of_codes.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_set_bsr.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_set_callout.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_set_character_tables.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_set_compile_extra_options.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_set_compile_recursion_guard.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_set_depth_limit.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_set_glob_escape.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_set_glob_separator.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_set_heap_limit.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_set_match_limit.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_set_max_pattern_compiled_length.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_set_max_pattern_length.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_set_max_varlookbehind.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_set_newline.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_set_offset_limit.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_set_optimize.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_set_parens_nest_limit.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_set_recursion_limit.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_set_recursion_memory_management.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_set_substitute_callout.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_set_substitute_case_callout.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_substitute.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_substring_copy_byname.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_substring_copy_bynumber.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_substring_free.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_substring_get_byname.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_substring_get_bynumber.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_substring_length_byname.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_substring_length_bynumber.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_substring_list_free.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_substring_list_get.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_substring_nametable_scan.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2_substring_number_from_name.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2api.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2build.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2callout.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2compat.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2convert.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2demo.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2grep.1
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2grep.txt
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2jit.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2limits.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2matching.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2partial.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2pattern.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2perform.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2posix.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2sample.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2serialize.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2syntax.3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2test.1
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2test.txt
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/doc/pcre2unicode.3
-rwxr-xr-x tarball-dir/pcre2-SNAPSHOT/install-sh
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/libpcre2-16.pc.in
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/libpcre2-32.pc.in
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/libpcre2-8.pc.in
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/libpcre2-posix.pc.in
-rwxr-xr-x tarball-dir/pcre2-SNAPSHOT/ltmain.sh
drwxr-xr-x tarball-dir/pcre2-SNAPSHOT/m4
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/m4/ax_pthread.m4
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/m4/libtool.m4
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/m4/ltoptions.m4
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/m4/ltsugar.m4
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/m4/ltversion.m4
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/m4/lt~obsolete.m4
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/m4/pcre2_visibility.m4
-rwxr-xr-x tarball-dir/pcre2-SNAPSHOT/missing
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/pcre2-config.in
-rwxr-xr-x tarball-dir/pcre2-SNAPSHOT/perltest.sh
drwxr-xr-x tarball-dir/pcre2-SNAPSHOT/src
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/config.h.generic
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/config.h.in
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2.h.generic
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2.h.in
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_auto_possess.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_chartables.c.dist
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_chkdint.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_compile.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_compile.h
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_compile_class.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_config.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_context.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_convert.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_dfa_match.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_dftables.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_error.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_extuni.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_find_bracket.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_fuzzsupport.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_internal.h
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_intmodedep.h
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_jit_char_inc.h
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_jit_compile.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_jit_match.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_jit_misc.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_jit_neon_inc.h
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_jit_simd_inc.h
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_jit_test.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_maketables.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_match.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_match_data.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_newline.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_ord2utf.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_pattern_info.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_printint.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_script_run.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_serialize.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_string_utils.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_study.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_substitute.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_substring.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_tables.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_ucd.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_ucp.h
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_ucptables.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_util.h
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_valid_utf.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2_xclass.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2demo.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2grep.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2posix.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2posix.h
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2posix_test.c
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/src/pcre2test.c
-rwxr-xr-x tarball-dir/pcre2-SNAPSHOT/test-driver
drwxr-xr-x tarball-dir/pcre2-SNAPSHOT/testdata
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepbinary
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepfilelist
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepinput
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepinput3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepinput8
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepinputBad8
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepinputBad8_Trail
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepinputC.bz2
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepinputC.gz
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepinputM
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepinputUN
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepinputv
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepinputx
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/greplist
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepnot.bz2
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepoutput
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepoutput8
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepoutputC
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepoutputCN
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepoutputCNU
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepoutputCU
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepoutputCbz2
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepoutputCgz
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepoutputN
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/grepoutputUN
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/greppatN4
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testbtables
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput1
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput10
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput11
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput12
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput13
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput14
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput15
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput16
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput17
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput18
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput19
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput2
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput20
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput21
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput22
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput23
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput24
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput25
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput26
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput27
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput4
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput5
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput6
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput7
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput8
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinput9
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinputEBC
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testinputheap
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput1
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput10
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput11-16
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput11-32
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput12-16
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput12-32
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput13
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput14-16
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput14-32
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput14-8
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput15
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput16
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput17
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput18
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput19
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput2
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput20
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput21
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput22-16
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput22-32
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput22-8
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput23
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput24
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput25
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput26
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput27
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput3A
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput3B
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput4
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput5
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput6
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput7
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput8-16-2
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput8-16-3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput8-16-4
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput8-32-2
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput8-32-3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput8-32-4
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput8-8-2
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput8-8-3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput8-8-4
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutput9
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutputEBC
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutputheap-16
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutputheap-32
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/testoutputheap-8
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/valgrind-jit.supp
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/wintestinput3
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/testdata/wintestoutput3
drwxr-xr-x tarball-dir/pcre2-SNAPSHOT/vms
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/vms/configure.com
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/vms/openvms_readme.txt
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/vms/pcre2.h_patch
-rw-r--r-- tarball-dir/pcre2-SNAPSHOT/vms/stdint.h