diff options
author | Daniel Golle <daniel@makrotopia.org> | 2020-08-13 11:27:39 +0100 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2020-08-13 11:28:28 +0100 |
commit | e16b84df15c1eac7b389fb715c9d00969acf3b30 (patch) | |
tree | ed87edc9705d0bae9493b0172953ad2fe46e27f3 /package/libs/pcre/Config.in | |
parent | 962e73c1a42ec1ef7cc6ba7574204688f90d64a0 (diff) | |
download | upstream-e16b84df15c1eac7b389fb715c9d00969acf3b30.tar.gz upstream-e16b84df15c1eac7b389fb715c9d00969acf3b30.tar.bz2 upstream-e16b84df15c1eac7b389fb715c9d00969acf3b30.zip |
pcre: import from packages feeds
libselinux require pcre, import to to core so it can build without
packages feeds.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'package/libs/pcre/Config.in')
-rw-r--r-- | package/libs/pcre/Config.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/libs/pcre/Config.in b/package/libs/pcre/Config.in new file mode 100644 index 0000000000..15e75fc753 --- /dev/null +++ b/package/libs/pcre/Config.in @@ -0,0 +1,11 @@ +config PCRE_JIT_ENABLED + bool + depends on PACKAGE_libpcre && (arm || i386 || i686 || x86_64 || mips || mipsel || powerpc || sparc) + default y if (arm || i686 || x86_64) + prompt "Enable JIT compiler support" + help + Enable JIT (Just-In-Time) compiler support. + + Enabling this option can give an about 10x performance increase on JIT operations. It can be desireable for e.g. high performance Apache mod_rewrite or HA-Proxy reqrep operations. + + However, JIT should _only_ be enabled on architectures that are supported. Enabling JIT on unsupported platforms will result in a compilation failure. A list of supported architectures can be found here: https://pcre.org/original/doc/html/pcrejit.html#SEC3 . |