Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mysqltest crashes on Debian | Sergei Golubchik | 2020-01-16 | 1 | -0/+5 |
| | | | | | | | | | | | | Debian is apparently offended that pcre2-posix implements POSIX API, thus it renames all posix-compatible symbols in libpcre2-posix to have the PCRE2 prefix. But Debian doesn't do anything to pcre2posix.h header, so any unaware application will get POSIX compatible type names and function prototypes from pcre2, but actual symbols will come from libc. To remedy this enormous incongruity we have to redefine POSIX-compatible function names in pcre2posix to match Debian's hack. | ||||
* | Fix PCRE2 build for Windows, with Ninja and Makefiles generator. | Vladislav Vaintroub | 2019-12-25 | 1 | -5/+12 |
| | | | | | Also, suppress pcre2 warning, it is external project, its warnings should not bother us. | ||||
* | remove pcre, add support for bundled pcre2 | Sergei Golubchik | 2019-12-21 | 1 | -5/+43 |
| | |||||
* | MDEV-14024 PCRE2. | Alexey Botchkov | 2019-12-21 | 1 | -15/+8 |
| | | | | Related changes in the server code. | ||||
* | MDEV-13412 main.func_regexp_pcre fails in buildbot on ppc64le | Sergei Golubchik | 2017-10-09 | 1 | -2/+14 |
| | | | | | | | | | | | | | | | | | Caused by 2fcd8c12522. It used the documented pcre API -pcre_exec(NULL, NULL, NULL, -999, -999, 0, NULL, 0) to calculate the pcre stack frame size. Unfortunately, modern compilers broke it by cloning and inlining pcre match() function. 2fcd8c12522 tried to workaround it by setting the stack frame size to at least 500. It didn't work, 500 is not a universal constant. Now we fix our copy of pcre to not inline or clone match() - so that stack frame detection would work again - and detect at cmake time whether system pcre is broken or usable. Also use stack, not (much slower) malloc in bundled pcre, unless on Windows | ||||
* | fix "cmake -DWITH_PCRE=bundled" | Sergei Golubchik | 2017-04-21 | 1 | -1/+1 |
| | | | | after building with system | ||||
* | MDEV-5620 CMake option to compile against an external PCRE library | Sergei Golubchik | 2014-03-04 | 1 | -0/+16 |