c105117b40
PCRE is now at end of life and is no longer actively maintained. Lift the dependency to the next major version, i.e. PCRE2. Implementation notes: - Removed the pcre study option since: "The new API ... was simplified by abolishing the separate "study" optimizing function; in PCRE2, patterns are automatically optimized where possible." - If asprintf() fails the content of the 'strp' variable is undefined. Lets check the return value and return NULL upon error. - Pattern and subject can straightforwardly be cast to PCRE2_SPTR since we only work with 8-bit code units.
28 lines
950 B
Text
28 lines
950 B
Text
Source: libr3
|
|
Priority: optional
|
|
Maintainer: Ronmi Ren <ronmi.ren@gmail.com>
|
|
Build-Depends: debhelper (>= 8.0.0), automake, autotools-dev, autoconf,
|
|
libtool, libpcre2-dev, pkg-config, check
|
|
Standards-Version: 3.9.4
|
|
Section: libs
|
|
Homepage: https://github.com/c9s/r3
|
|
|
|
Package: libr3-dev
|
|
Section: libdevel
|
|
Architecture: any
|
|
Depends: libr3 (= ${binary:Version})
|
|
Description: Development files for libr3
|
|
libr3 (https://github.com/c9s/r3) is an URL router library with high
|
|
performance, thus, it's implemented in C. It compiles your R3Route paths into
|
|
a prefix trie.
|
|
.
|
|
This package contains header files for libr3.
|
|
|
|
Package: libr3
|
|
Section: libs
|
|
Architecture: any
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
|
Description: High performance URL routing library written in C.
|
|
libr3 (https://github.com/c9s/r3) is an URL router library with high
|
|
performance, thus, it's implemented in C. It compiles your R3Route paths into
|
|
a prefix trie.
|