aboutsummaryrefslogtreecommitdiff
path: root/libs/pcre2
Commit message (Collapse)AuthorAge
* pcre2: package moved to base feedNick Hainke2023-05-18
| | | | | | | | | | The package is needed by selinux, so it was moved to the base repository. Remove it from openwrt packages feed. Cross-reference: c39b0646f3f2 ("pcre2: import pcre2 from packages feed") Signed-off-by: Nick Hainke <vincent@systemli.org>
* pcre2: only build static library for hostTianling Shen2023-04-26
| | | | | | | | | | | | | | Fix potential linking issue: ``` /mnt/snapshot/staging_dir/hostpkg/bin/swig: error while loading shared libraries: libpcre2-8.so.0: cannot open shared object file: No such file or directory error: command '/mnt/snapshot/staging_dir/hostpkg/bin/swig' failed with exit code 127 ``` Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* pcre2: add host build (refs #20604)Michael Heimpold2023-03-14
| | | | | | | | | | This adds a host build which can be used later by tools, e.g. swig - which in turn is used by gensio package to provide python bindings. While at, switch back from $(AUTORELEASE). Signed-off-by: Michael Heimpold <mhei@heimpold.de>
* pcre2: add zlib build dependencyRosen Penev2022-07-14
| | | | | | Otherwise the host zlib gets picked up. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* pcre2: update to 10.37Rosen Penev2021-07-21
| | | | | | Switch to AUTORELEASE for simplicity. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: back to cmake.mkRosen Penev2021-06-12
| | | | | | Ninja was merged to base and therefore we can now use normal cmake.mk Signed-off-by: Rosen Penev <rosenp@gmail.com>
* treewide: build CMake projects with NinjaRosen Penev2021-03-27
| | | | | | | | | | | | | | | | | | | | faster to compile. A small selection of packages was tested going from: Executed in 696.30 secs fish external usr time 82.98 mins 395.00 micros 82.98 mins sys time 9.02 mins 0.00 micros 9.02 mins to: Executed in 592.20 secs fish external usr time 84.84 mins 361.00 micros 84.84 mins sys time 8.85 mins 57.00 micros 8.85 mins Tested by running make -j 12 and wiping staging/build_dir/target_x Signed-off-by: Rosen Penev <rosenp@gmail.com>
* pcre2: update to 10.36Rosen Penev2020-12-14
| | | | | | Mostly JIT fixes. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* pcre2: install pcre2-config to host pathRosen Penev2020-12-07
| | | | | | Helps old packages that do not use pkgconfig. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* pcre2: switch to CMakeRosen Penev2020-07-15
| | | | | | Allows simplifying the Makefile. Faster compilation as well. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* pcre2: updater to 10.35Rosen Penev2020-06-06
| | | | | | | | Add PKG_BUILD_PARALLEL for faster compilation. Remove autoreconf as nothing is being patched. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* pcre2: Update PCRE2 to v10.34Christian Lachner2019-11-27
| | | | | | - Update download URL and hash Signed-off-by: Christian Lachner <gladiac@gmail.com>
* pcre2: Add JIT-support for select architectures in PCRE2Christian Lachner2019-11-26
| | | | | | | | | | | | | | | | | - This commit adds a config-option for JIT in libpcre2. According to research published on https://rust-leipzig.github.io/regex/2017/03/28/comparison-of-regex-engines/ this should give a 10x performance increase on JIT operations which can be desireable for high performance Apache mod_rewrite or haproxy reqrep operations. This option is available on all officially supported architecutres which are listed on https://pcre.org/current/doc/html/pcre2jit.html#SEC2. Furthermore, it is enabled by default on the following architectures: arm, i686, x86_64. Signed-off-by: Christian Lachner <gladiac@gmail.com>
* treewide: add PKG_CPE_ID for better cvescanner coverageJan Pavlinec2019-09-17
| | | | Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* pcre2: Update to 10.32Rosen Penev2018-09-30
| | | | | | | | | | Fixed SourceForge link and removed ftp mirror. Added PKG_BUILD_PARALLEL for faster compilation. Small adjustments for consistency between other Makefiles. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* pcre2: Update to 10.31Rosen Penev2018-06-08
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* pcre2: Update PKG_SOURCE to use SourceforgeShane Peelar2017-08-23
| | | | Signed-off-by: Shane Peelar <lookatyouhacker@gmail.com>
* pcre2: Update PCRE2 lib to latest version (10.30)Shane Peelar2017-08-22
| | | | | | Update the PCRE2 library to the latest version. Signed-off-by: Shane Peelar <lookatyouhacker@gmail.com>
* pcre2: Introduce PCRE2 library into repo for fishShane Peelar2017-02-17
Need PCRE2 library for the fish shell. Took existing pcre makefile as a base to build pcre2, supporting 8, 16, and 32 bit characters with different install targets for each. Signed-off-by: Shane Peelar <lookatyouhacker@gmail.com>