summaryrefslogtreecommitdiff
path: root/ext/pcre
Commit message (Collapse)AuthorAgeFilesLines
* MFHAndrei Zmievski2006-04-111-1/+13
|
* I guess we only need this on HEAD.Andrei Zmievski2006-04-061-20/+0
|
* Fix a bug that would not fill in the fifth argument to preg_replace()Andrei Zmievski2006-04-062-9/+22
| | | | | properly, if the variable was not declared previously.
* Fix build and sync parameters with config0.m4.Sebastian Bergmann2006-03-061-2/+2
|
* MFH (Import PCRE 6.6)Andrei Zmievski2006-03-0666-17173/+8438
|
* Fixed test fileDmitry Stogov2006-02-201-1/+1
|
* MFH.Andrei Zmievski2006-02-171-1/+3
|
* TODOAndrei Zmievski2006-02-061-0/+7
|
* bump year and license versionfoobar2006-01-012-6/+6
|
* - Readd the file in this branchMarcus Boerger2005-12-071-0/+57
|
* MFH: nuke php3 legacyfoobar2005-12-061-1/+1
|
* - export everything we've got aliases forMichael Wallner2005-12-011-0/+8
|
* - use php_pcre aliasesMichael Wallner2005-12-012-1/+4
|
* MFH: ext/filter will need those exportsMichael Wallner2005-12-011-0/+1
| | | | | # php_compat.h still prevents linking
* MFH: Renamed config.m4 to config0.m4foobar2005-11-171-57/+0
| | | | | # PCRE configure tests must be run before e.g. ext/filter
* MFHfoobar2005-11-161-0/+1
|
* Fixed bug #34725 (CLI segmentation faults during cleanup in ZTS if ext/pcre ↵Dmitry Stogov2005-10-281-1/+3
| | | | is DSO)
* Fixed bug #34790 (preg_match_all(), named capturing groups, variable ↵Dmitry Stogov2005-10-112-0/+24
| | | | assignment/return => crash)
* removed unused varsIlia Alshanetsky2005-08-231-2/+0
|
* MFH: Nuked EOLs from error messagesfoobar2005-08-181-1/+1
|
* Sync with config.m4.Sebastian Bergmann2005-08-091-2/+2
|
* This commit was manufactured by cvs2svn to create branch 'PHP_5_1'.SVN Migration2005-08-081-56/+0
|
* Upgrade to PCRE version 6.2.Andrei Zmievski2005-08-0874-6564/+35941
| | | | | # Don't worry, upgrade for other branches is coming
* - Bumber up yearfoobar2005-08-032-2/+2
|
* Netware also uses autoconf based config nowfoobar2005-06-301-2/+0
|
* kill unused var.Ilia Alshanetsky2005-06-011-1/+0
|
* - Fixed bug #33200 (preg_replace(): magic_quotes_sybase=On makes 'e' ↵foobar2005-05-312-3/+15
| | | | modifier misbehave)
* Sync with config.m4 (missing MATCH_LIMIT broke the Win32 build).Sebastian Bergmann2005-05-281-1/+1
|
* No need to include ucp.c and ucptypetable.c here.Andrei Zmievski2005-05-272-4/+4
|
* Upgrade library to version 5.0.Andrei Zmievski2005-05-2730-2142/+20396
|
* Flush regexp cache if we detect corruption.Andrei Zmievski2005-05-241-5/+13
|
* add testAndrey Hristov2005-03-121-0/+40
| | | | | #forgot to add this one
* FR 32275 - fifth parameter to preg_replace() to count number of replacesAndrey Hristov2005-03-122-16/+31
| | | | | | made. #it would be nice if someone of the doc team documents it. thanks!
* - Fix outside-source-tree builds. Always include generated header filesfoobar2005-01-091-1/+1
| | | | | with #include <some_header.h> to make sure the correct file is used.
* return empty string when got empty parameterAntony Dovgal2004-12-241-1/+1
|
* Avoid causing a crash.Ilia Alshanetsky2004-12-101-1/+1
|
* fix 1-byte leakAntony Dovgal2004-12-091-1/+1
|
* Update extensions to use /path/to/$PHP_LIBDIR rather than /path/to/libJoe Orton2004-11-032-2/+2
| | | | | to support multi-ABI platforms.
* MFB.Andrei Zmievski2004-08-251-50/+10
|
* MFB: TSRM fixMarcus Boerger2004-08-241-2/+2
|
* MFB.Andrei Zmievski2004-08-241-0/+66
|
* - Nuke empty_string. It is a reminanent from the time where RETURN_FALSE()Andi Gutmans2004-07-191-4/+5
| | | | | | | | | | | | | | | used to return "" and not bool(false). It's not worth keeping it because STR_FREE() and zval_dtor() always have to check for it and it slows down the general case. In addition, it seems that empty_string has been abused quite a lot, and was used not only for setting zval's but generally in PHP code instead of "", which wasn't the intention. Last but not least, nuking empty_string should improve stability as I doubt every place correctly checked if they are not mistakenly erealloc()'ing it or calling efree() on it. NOTE: Some code is probably broken. Each extension maintainer should check and see that my changes are OK. Also, I haven't had time to touch PECL yet. Will try and do it tomorrow.
* MFB (better error checking in pcre_fullinfo() calls).Andrei Zmievski2004-06-221-8/+46
|
* spot the vim userWez Furlong2004-05-071-1/+1
|
* Fix Bug #28317: Avoid recursion in libpcre on windows platform.Wez Furlong2004-05-071-1/+1
|
* MFB: Fix for bug #27810Rasmus Lerdorf2004-04-231-23/+1
|
* ZTS fix.Sebastian Bergmann2004-02-011-1/+1
|
* - Forgot to add test case.Moriyoshi Koizumi2004-02-011-0/+37
|
* - Binary compatibility stuff, for safety.Moriyoshi Koizumi2004-02-011-1/+1
|
* - Fix bug #27103 (preg_split('//u') incorrectly splits UTF-8 strings into ↵Moriyoshi Koizumi2004-01-312-6/+42
| | | | octets).