Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | typofixes | Veres Lajos | 2014-08-17 | 1 | -2/+2 |
| | |||||
* | updated to oniguruma to 5.9.5 | Anatol Belski | 2014-03-15 | 8 | -448/+178 |
| | |||||
* | Merge branch 'PHP-5.4' into PHP-5.5 | Stanislav Malyshev | 2013-08-04 | 1 | -1/+1 |
|\ | | | | | | | | | | | | | | | * PHP-5.4: non living code related typo fixes Conflicts: Zend/zend_compile.c | ||||
| * | non living code related typo fixes | Veres Lajos | 2013-08-04 | 1 | -1/+1 |
| | | |||||
| * | Merge branch 'pull-request/341' | Stanislav Malyshev | 2013-06-10 | 1 | -1/+1 |
| | | | | | | | | | | * pull-request/341: (23 commits) typofixes | ||||
* | | Merge branch 'pull-request/341' | Stanislav Malyshev | 2013-06-10 | 1 | -1/+1 |
| | | | | | | | | | | * pull-request/341: (23 commits) typofixes | ||||
* | | Fixed bug #64769 mbstring PHPTs crash on Windows x64 | Anatol Belski | 2013-05-08 | 2 | -1/+11 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The tricky business going there in oniguruma is saving a pointer in an int variable, passing that variable into a function and making it a pointer again. On 64bit windows casting a pointer to a 32 bit int will truncate that pointer. This kind of things won't work on Windows x64. [SNIPPET] unsigned long ul0[2], ul1, *ul2; ul0[0] = 42uL; ul0[0] = 24uL; ul1 = (unsigned long)ul0; ul2 = (unsigned long *)ul1; /* now it's broken, accessing ul2[0] will crash. */ [/SNIPPET] To make it portable, ULONG_PTR should be used in this case. In oniguruma this behaviour is to see at least in the following codepath: ext/mbstring/oniguruma/enc/unicode.c:10938 ext/mbstring/oniguruma/st.c:308 ext/mbstring/oniguruma/enc/unicode.c:10859 | ||||
* | | Merge branch 'PHP-5.4' | Xinchen Hui | 2012-10-09 | 5 | -0/+0 |
|\ \ | |/ | |||||
| * | Fixed bug #63236 (Executable permission on various source files) | Xinchen Hui | 2012-10-09 | 5 | -0/+0 |
| | | |||||
| * | backport the line from trunk and fix uninitialized variables | Antony Dovgal | 2011-11-19 | 1 | -0/+1 |
| | | |||||
* | | updated bundled oniguruma regex library to 5.9.2. fixed bug #42290. | Rui Hirokawa | 2011-10-15 | 65 | -10877/+18777 |
|/ | |||||
* | - fix VC9 build (5.3+) | Pierre Joye | 2008-07-30 | 1 | -0/+2 |
| | | | | | Please do not revert this fix again and to merge 5.3's changes to HEAD | ||||
* | - MFH: Added a new configure option --with-onig=[DIR] that allows the extension | Moriyoshi Koizumi | 2008-07-16 | 2 | -15/+1 |
| | | | | | | | to link to the external oniguruma library. - MFH: Prevent libmbfl files from being installed when --with-libmbfl is specified. | ||||
* | updated bundled oniguruma from 4.4.0 to 4.7.1 | Rui Hirokawa | 2008-07-13 | 46 | -1352/+1035 |
| | |||||
* | - MFH: fix build with VC9 PSDK6.x | Pierre Joye | 2008-07-12 | 1 | -1/+3 |
| | |||||
* | MFH: Bump copyright year, 2 of 2. | Sebastian Bergmann | 2007-12-31 | 18 | -19/+19 |
| | |||||
* | MFH: fixed bug #42502 va_* cannot detect. | Rui Hirokawa | 2007-09-18 | 1 | -0/+6 |
| | |||||
* | - Revert last part and fix issue under windows | Marcus Boerger | 2007-03-06 | 1 | -3/+3 |
| | |||||
* | - And the sizes too | Marcus Boerger | 2007-03-06 | 1 | -2/+2 |
| | |||||
* | - More to go | Marcus Boerger | 2007-03-06 | 1 | -2/+2 |
| | | | | | | | # CVS sucks, you cannot mix -D with -r # However, thanks edin for reminding me that we have mini version tags # I still prefer subverison. There we don't have any problem of this kind | ||||
* | - There you go | Marcus Boerger | 2007-03-06 | 1 | -1/+1 |
| | |||||
* | - MFH Revert back to sprintf (we could define snprintf for windows but we don't) | Marcus Boerger | 2007-03-06 | 1 | -1/+1 |
| | |||||
* | Fixed typo | Ilia Alshanetsky | 2007-02-28 | 1 | -1/+1 |
| | |||||
* | Adjust vsnprintf() usage | Ilia Alshanetsky | 2007-02-28 | 1 | -2/+2 |
| | |||||
* | snprintf() -> slprintf() | Ilia Alshanetsky | 2007-02-27 | 1 | -0/+3 |
| | |||||
* | - Avoid sprintf, even when checked copy'n'paste or changes lead to errors | Marcus Boerger | 2007-02-24 | 3 | -5/+5 |
| | |||||
* | MFH: Bump year. | Sebastian Bergmann | 2007-01-01 | 18 | -19/+19 |
| | |||||
* | missing variable initialization | Antony Dovgal | 2006-10-10 | 1 | -0/+1 |
| | |||||
* | initialize variable and make valgrind happy | Antony Dovgal | 2006-09-28 | 1 | -0/+1 |
| | |||||
* | Updated bundled oniguruma library (used for multibyte regular expression) to ↵ | Seiji Masugata | 2006-09-21 | 7 | -103/+72 |
| | | | | 4.4.4. fixed some Segmentation Fault, and build fails in OSX(Xcode 2.4/gcc 4.0.1 problem). See #38452. | ||||
* | fixed compilation problem on Mac OS/X. (bug #38892,38778,38452) | Rui Hirokawa | 2006-09-20 | 1 | -0/+7 |
| | |||||
* | added configure option --disable-mbregex-backtrack. | Seiji Masugata | 2006-08-25 | 2 | -0/+5 |
| | |||||
* | Initial commit. Updated bundled oniguruma library (used for multibyte ↵ | Seiji Masugata | 2006-08-24 | 6 | -0/+2163 |
| | | | | regular expression) to 4.3.1. | ||||
* | Initial commit. Updated bundled oniguruma library (used for multibyte ↵ | Seiji Masugata | 2006-08-24 | 1 | -0/+1 |
| | | | | regular expression) to 4.3.1. | ||||
* | Updated bundled oniguruma library (used for multibyte regular expression) to ↵ | Seiji Masugata | 2006-08-24 | 9 | -180/+990 |
| | | | | 4.3.1. | ||||
* | fix build with Intel C Compiler | Antony Dovgal | 2006-07-27 | 1 | -1/+1 |
| | |||||
* | Initial commit. Updated bundled oniguruma library (used for multibyte ↵ | Seiji Masugata | 2006-07-20 | 1 | -0/+501 |
| | | | | regular expression) to 4.2.0. | ||||
* | Updated bundled oniguruma library (used for multibyte regular expression) to ↵ | Seiji Masugata | 2006-07-20 | 52 | -897/+1676 |
| | | | | 4.2.0. | ||||
* | fix compile warnings (again) | Antony Dovgal | 2005-10-12 | 1 | -4/+4 |
| | |||||
* | oniguruma updated to 3.7.1 and changed UChar to OnigUChar. | Rui Hirokawa | 2005-03-19 | 9 | -109/+100 |
| | |||||
* | fix compile warnings | Antony Dovgal | 2005-03-09 | 1 | -4/+4 |
| | |||||
* | - Fix bug #29989 (type re_registers redefined in oniguruma.h) | Moriyoshi Koizumi | 2005-02-21 | 1 | -0/+1 |
| | |||||
* | - Update libmbfl (fixes bug #30549 and #31911). | Moriyoshi Koizumi | 2005-02-20 | 58 | -5221/+17905 |
| | | | | | - Update oniguruma to 3.7.0 | ||||
* | - Rename php_compat.h to php_onig_compat.h to avoid name conflict. | Moriyoshi Koizumi | 2004-07-19 | 2 | -1/+1 |
| | | | | | (reported by Joe Orton, thanks.) | ||||
* | - Fix compiler warnings. (Patch by K.Kosako <kosako@sofnec.co.jp>) | Moriyoshi Koizumi | 2004-03-04 | 13 | -65/+85 |
| | |||||
* | - Revisit config.h for win32 build. | Moriyoshi Koizumi | 2004-03-02 | 1 | -0/+84 |
| | | | | | # apologies for messing. | ||||
* | - Remove redundant files that are irrelevant to the build. | Moriyoshi Koizumi | 2004-02-28 | 1 | -5414/+0 |
| | |||||
* | - Forgot to add those. | Moriyoshi Koizumi | 2004-02-28 | 25 | -0/+4807 |
| | |||||
* | - Upgrade bundled oniguruma regex library to 2.2.2 (Rui, Moriyoshi) | Moriyoshi Koizumi | 2004-02-28 | 35 | -6020/+11764 |
| | | | | | | | | . Supports various encodings such as BIG5, GB2312 and ISO-8859-* . Fixes bug #26677 (mbstring compile errors with IRIX) . Many thanks to K.Kosako. - Remove redundant files that are not relevant to the build. | ||||
* | removed mbstring/*/config.h. | Rui Hirokawa | 2003-08-23 | 1 | -67/+0 |
| |