summaryrefslogtreecommitdiff
path: root/pcre
Commit message (Collapse)AuthorAgeFilesLines
* remove pcre, add support for bundled pcre2Sergei Golubchik2019-12-21307-202090/+0
|
* Merge 10.4 into 10.5Marko Mäkelä2019-12-169-12/+12
|\
| * Lintian complains on spelling errorFaustin Lammler2019-12-029-12/+12
| | | | | | | | | | The lintian check complains on spelling error: https://salsa.debian.org/mariadb-team/mariadb-10.3/-/jobs/95739
| * Merge branch '10.2' into 10.3Monty2019-09-032-1/+2
| |\
| | * Fixed some compiler warningsMonty2019-09-013-2/+3
| | |
* | | Merge 10.4 into 10.5Marko Mäkelä2019-08-161-1/+2
|\ \ \
| * \ \ Merge 10.3 into 10.4Marko Mäkelä2019-08-141-1/+2
| |\ \ \ | | |/ /
| | * | Merge 10.2 to 10.3Marko Mäkelä2019-08-131-1/+2
| | |\ \ | | | |/
| | | * Fixed some errors & warnings found by clangMonty2019-08-081-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - pcretest.c could use macro with side effect - maria_chk could access freed memory - Initialized some variables that could be accessed uninitalized - Fixed compiler warning in my_atomic-t.c
* | | | Fix clang-cl warningVladislav Vaintroub2019-07-041-1/+1
|/ / /
* | | Merge branch '10.3' into 10.4Oleksandr Byelkin2019-05-1916-27/+227
|\ \ \ | |/ /
| * | Merge branch '10.2' into 10.3Oleksandr Byelkin2019-05-1216-27/+227
| |\ \ | | |/
| | * Merge branch '10.1' into 10.2Oleksandr Byelkin2019-05-0416-27/+227
| | |\
| | | * Merge branch 'merge-pcre' into 10.1Sergei Golubchik2019-04-2616-27/+227
| | | |\
| | | | * 8.43Sergei Golubchik2019-04-2640-975/+1509
| | | | |
| * | | | Fixed compiler warning in pcregrep.cMonty2019-05-101-1/+1
| | | | |
* | | | | Removed some warnings from -Wimplicit-fallthrough= with build scriptsMonty2019-04-013-2/+3
|/ / / /
* | | | fix bundled pcre unit testsSergei Golubchik2018-08-131-2/+2
| | | |
* | | | MDEV-16662 CMake warnings: CMP0026Sergei Golubchik2018-08-124-45/+51
|/ / /
* | | Merge branch '10.1' into 10.2Sergei Golubchik2018-05-1019-337/+638
|\ \ \ | |/ /
| * | Merge branch '10.0' into 10.1Sergei Golubchik2018-05-0519-337/+638
| |\ \
| | * \ Merge branch 'merge-pcre' into 10.0Sergei Golubchik2018-04-2619-337/+638
| | |\ \ | | | |/
| | | * 8.42Sergei Golubchik2018-04-2456-3397/+5804
| | | |
* | | | Fix and reenable Windows compiler warning C4800 (size_t conversion).Vladislav Vaintroub2018-01-262-4/+4
| | | |
* | | | Merge branch '10.1' into 10.2Sergei Golubchik2017-10-242-3/+9
|\ \ \ \ | |/ / /
| * | | Merge branch '10.0' into 10.1Sergei Golubchik2017-10-222-3/+9
| |\ \ \ | | |/ /
| | * | MDEV-13412 main.func_regexp_pcre fails in buildbot on ppc64leSergei Golubchik2017-10-092-3/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | Merge 10.1 into 10.2Marko Mäkelä2017-09-062-1/+6
|\ \ \ \ | |/ / /
| * | | Merge 10.0 into 10.1Marko Mäkelä2017-09-062-1/+6
| |\ \ \ | | |/ /
| | * | Fix compiler warningsMarko Mäkelä2017-09-012-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | metadata_lock_info_duration[]: Remove the unused variable. Add some comments /* fall through */ to silence -Wimplicit-fallthrough
* | | | Merge branch '10.1' into 10.2Sergei Golubchik2017-08-1731-521/+825
|\ \ \ \ | |/ / /
| * | | Merge branch '10.0' into 10.1Sergei Golubchik2017-08-0831-521/+825
| |\ \ \ | | |/ /
| | * | Merge branch 'merge-pcre' into 10.0Vicențiu Ciorbaru2017-07-3031-521/+825
| | |\ \ | | | |/
| | | * 8.41Vicențiu Ciorbaru2017-07-3058-3881/+4299
| | | |
* | | | MDEV-13370 Ambiguous behaviour regarding installation of header filesSergei Golubchik2017-08-141-1/+1
|/ / / | | | | | | | | | | | | install all server includes under /usr/include/mysql/server/ and C/C includes under /usr/include/mysql/
* | | Merge 10.0 into 10.1Marko Mäkelä2017-03-0930-1166/+1449
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | Also, implement MDEV-11027 a little differently from 5.5 and 10.0: recv_apply_hashed_log_recs(): Change the return type back to void (DB_SUCCESS was always returned). Report progress also via systemd using sd_notifyf().
| * | Merge branch 'merge-pcre' into 10.0Vicențiu Ciorbaru2017-03-0530-1166/+1449
| |\ \ | | |/
| | * 8.40Vicențiu Ciorbaru2017-03-0548-1236/+1630
| | |
* | | Merge branch '10.0' into 10.1Sergei Golubchik2016-06-2831-2141/+3492
|\ \ \ | |/ /
| * | Merge branch 'merge-pcre' into 10.0Sergei Golubchik2016-06-2131-2141/+3492
| |\ \ | | |/
| | * 8.39Sergei Golubchik2016-06-2158-4367/+5786
| | |
* | | Merge branch '10.0' into 10.1Sergei Golubchik2015-12-2139-1264/+2225
|\ \ \ | |/ /
| * | Merge branch 'merge/merge-pcre' into 10.0Sergei Golubchik2015-12-1339-1264/+2225
| |\ \ | | |/
| | * 8.38Sergei Golubchik2015-12-1356-1646/+2886
| | |
* | | Merge branch '10.0' into 10.1Sergei Golubchik2015-11-191-5/+0
|\ \ \ | |/ /
| * | MDEV-8533 Debug embedded server does not build on WindowsVladislav Vaintroub2015-11-091-5/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pre/CMakeLists.txt defines CMAKE_DEBUG_POSTFIX which causes a different library name on Windows debug build (pcred.lib rather than pre.lib) However MERGE_LIBRARIES macro that is used to create static embedded library (out of other static libraries), can not handle per-configuration library names. Thus the build fails with "pre.lib not found" Fix is to remove unnecessary CMAKE_DEBUG_POSTFIX
* | | restore CRLF file ending in the test dataSergei Golubchik2015-09-141-2/+2
| | |
* | | Fix spelling errorsOtto Kekäläinen2015-08-271-1/+1
|/ /
* | CRLFSergei Golubchik2015-06-111-616/+616
| |
* | Merge branch 'merge-pcre' into 10.0Sergei Golubchik2015-05-0441-768/+1695
|\ \ | |/