summaryrefslogtreecommitdiff
path: root/ext/pcre
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'php_4_0b3'.php-4.0b3SVN Migration1999-11-191-64/+0
|
* Remove the extra INCLUDES line from most automake Mafiles. This is notSascha Schumann1999-11-131-1/+0
| | | | | | | | | necessary, because we can change the value of INCLUDES globally in one place (configure.in). Also add two defines in thread-safe mode (_REENTRANT and POSIX_PTHREAD_SEMANTICS)
* Fix bug #2623.Andrei Zmievski1999-10-281-1/+2
|
* Define USE_BCOPY, if memmove is not found (i.e. SunOS 4). Fix for #2480Sascha Schumann1999-10-243-0/+5
|
* Make string copying a little more efficient.Andrei Zmievski1999-10-151-2/+2
|
* Renamed a couple of functions to have proper php_ prefix.Andrei Zmievski1999-10-151-3/+3
|
* (_php_replace_in_subject)Andrei Zmievski1999-10-151-66/+42
| | | | | | | | | | (PHP preg_replace): Fixed a bug that happened when regex was an array and replacement was a single non-string value. Also changed conversions to use convert_to_string_ex(). (PHP preg_grep): use convert_to_string_ex() for proper conversion
* * archive-based convenience libraries completely replacedSascha Schumann1999-10-044-11/+15
| | | | | | | | | | | | | | | | | | | | | | with libtool components * SAPI targets can enable thread-safe mode and define shared/static/program build target * all configure scripts use the same config.cache * phplibdir is $(top_builddir)/modules to avoid permission problems * sapi/*/Makefile.inc are gone * runpath handling cleaned up * top-level Makefile.in obsoleted through Makefile.am * --enable-versioning uses libtool's cleaner and more portable -export-symbols feature
* rename.Andrei Zmievski1999-10-012-3/+2
|
* preg_replace() now makes copies of array entries if arrays are passed in,Andrei Zmievski1999-09-301-8/+42
| | | | | so that convert_to_string() preserves the originals. Is this the correct way to do it?
* * create Makefiles for ext, pcrelib, sapi/*Sascha Schumann1999-09-292-0/+4
| | | | | * copy files for Apache from $(srcdir)
* - Updated array functions to use high-performance APIAndrey Hristov1999-09-241-10/+22
| | | | | - Updated preg_split() to allow returning only non-empty pieces
* Update to new high-performance function API.Andrey Hristov1999-09-241-64/+64
|
* Small clarification.Andrey Hristov1999-09-232-2/+4
|
* improve short help messagesSascha Schumann1999-09-162-6/+8
|
* - Updated bundled PCRE library to version 2.08Andrey Hristov1999-09-1434-373/+6362
| | | | | | | | - Made it possible to specify external location of the PCRE library - Reworked PCRE extension to use updated PCRE library API Hopefully now everything behaves just like Perl..
* Static is good...Andrey Hristov1999-09-032-32/+27
|
* Practice what you preach, I guess.Andrey Hristov1999-09-032-15/+15
|
* Missing return types in prototypesRasmus Lerdorf1999-08-261-3/+3
|
* Here was also something missingEgon Schmid1999-08-191-1/+2
|
* - Fixed memory leaks. tsrm resource id deallocation still needs to be ↵Andi Gutmans1999-08-191-0/+2
| | | | implemented.
* make pcre test program compile again with Zeev'sPhilippe Verdy1999-08-151-2/+4
| | | | | additions in the pcre_exec() function parameters
* Removed '3' from key functions in PHP (maintained compatibility throughZeev Suraski1999-08-021-2/+2
| | | | | php3_compat.h)
* Another forgotten prototype. Andrey, why is preg_grep in PHP3 missing?Egon Schmid1999-08-011-1/+2
|
* *** empty log message ***Andrey Hristov1999-07-221-2/+2
|
* Added locale support.Andrey Hristov1999-07-202-4/+33
|
* -Kill compile warnings in apache.cAndrey Hristov1999-07-171-34/+43
| | | | | -Make preg_grep() work with copies of array entries
* License updateZeev Suraski1999-07-161-20/+9
|
* *** empty log message ***Andrey Hristov1999-07-122-2/+2
|
* Don't touch refcount and EA directlyZeev Suraski1999-07-091-4/+2
|
* Step 2:Zeev Suraski1999-07-091-2/+2
| | | | | Rename is_ref to EA
* Step 1 in nuking the garbage collector:Zeev Suraski1999-07-091-1/+2
| | | | | - Change the hash destructor to return int
* Reduce clutter a bit.Andrey Hristov1999-07-081-1/+1
|
* Support PCRE under Win32Zeev Suraski1999-07-061-2/+5
|
* avoid two copies of pcre.c in the repositoryZeev Suraski1999-07-062-1/+1
|
* Correct option cachingAndrey Hristov1999-07-052-1/+7
|
* Made preg_split() consistent with split().Andrey Hristov1999-06-222-60/+160
| | | | | | Added a new /e modifier for preg_replace Kill a warning in pcrelib.
* Added preg_grep() function.Andrey Hristov1999-06-102-1/+90
|
* A fix for a fix.Andrey Hristov1999-06-091-1/+1
|
* Fixed a bug in preg_split.Andrey Hristov1999-06-091-3/+3
| | | | | Fixed a bug in array_shift/array_pop.
* Fixed a bug in preg_replace.Andrey Hristov1999-06-091-5/+5
|
* Added preg_quote() function.Andrey Hristov1999-06-042-0/+66
|
* *** empty log message ***Andrey Hristov1999-06-041-0/+1
|
* *** empty log message ***Andrey Hristov1999-06-012-2/+2
|
* preg_match_all() now returns the number of global matches.Andrey Hristov1999-05-301-5/+2
|
* Updated preg_split().Andrey Hristov1999-05-291-11/+17
|
* Fix preg_match_all to do proper matching with \b.Andrey Hristov1999-05-291-9/+14
|
* Fixed PCRE so that global matching with patterns with \b works.Andrey Hristov1999-05-294-9/+22
|
* * Get Apache module to compile again with the regex stuff.Zeev Suraski1999-05-282-4/+4
| | | | | * Get Apache to propertly work with POST, and some SAPI fixes
* -Modified PCRE library slightly to do what needs to be doneAndrey Hristov1999-05-287-104/+58
| | | | | | | -Updated preg_replace() code to handle stuff properly -Removed ability to specify external PCRE library source to link against (since our bundled version is patched now)