Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | master renames phase 1 | Anatol Belski | 2014-08-25 | 1 | -1/+1 |
| | |||||
* | first shot on merging the core fro the int64 branch | Anatol Belski | 2014-08-16 | 1 | -1/+1 |
| | |||||
* | make ZEND_SIGNALS configurable, off by default | Stanislav Malyshev | 2012-02-16 | 1 | -2/+8 |
| | | | | | also make ZEND_SIGNALS enabled and disabled binary-compatible | ||||
* | Zend Signal Handling (see RFC: https://wiki.php.net/rfc/zendsignals) | Ilia Alshanetsky | 2011-06-02 | 1 | -0/+14 |
| | | | | | | | | This needs to go into 5.4 as well, but will wait for Pierre to review win32 situation # Patch by Lucas Nealan, Arnaud Le Blanc, Brian Shire & Ilia Alshanetsky | ||||
* | Added multibyte suppport by default. Previosly php had to be compiled with ↵ | Dmitry Stogov | 2010-11-24 | 1 | -14/+0 |
| | | | | --enable-zend-multibyte. Now it can be enabled or disabled throug zend.multibyte directive in php.ini | ||||
* | Set session.entropy_file to /dev/urandom or /dev/arandom by | Rasmus Lerdorf | 2010-03-31 | 1 | -0/+7 |
| | | | | | default if present at compile-time. Addresses part of bug #51436 | ||||
* | Fix bug #48575 - Use dlopen() just like all the other *nixes instead of OSX ↵ | Scott MacVicar | 2009-08-06 | 1 | -12/+0 |
| | | | | specific code. | ||||
* | MFH: | Matt Wilmas | 2009-06-04 | 1 | -0/+32 |
| | | | | | | | | | | | | | | | | | | Restored double->long conversion behavior to that of PHP 5.2 (on most platforms) and prior: * Out-of-range numbers overflow/preserve least significant bits (no LONG_MAX/MIN limit) * See bug #42868 (presumably-rare platform with different results in 5.2) * On 32-bit platforms with 64-bit long type, a zend_long64 cast has been added, otherwise it's the same as 5.2 * Use this conversion method everywhere instead of some plain (long) casts Added 'L' parameter parsing specifier to ensure a LONG_MAX/MIN limit: * Essentially what 5.3's new conversion was doing in most cases * Functions with "limit" or "length" type params could be updated to use this, and prevent confusing overflow behavior with huge numbers (*also* in 5.2) - See bug #47854, for example; or even #42868 again # Test updates coming | ||||
* | - MFH: Changed floating point behaviour to consistently use double precision | Christian Seiler | 2008-12-02 | 1 | -0/+2 |
| | | | | | on all platforms and with all compilers. | ||||
* | implemented again zend-multibyte for PHP 5.3 | Rui Hirokawa | 2008-06-29 | 1 | -0/+14 |
| | |||||
* | Make the sigsetjmp change more robust. On systems that don't have | Rasmus Lerdorf | 2008-03-18 | 1 | -1/+1 |
| | | | | | | | sigsetjmp use setjmp. Windows is of course weird in that it seems to have sigsetjmp but not sigjmp_buf (??) so force it to use setjmp in config.w32.h.in | ||||
* | - Rewrite scanner to be based on re2c instead of flex | Marcus Boerger | 2008-03-16 | 1 | -15/+0 |
| | | | | | | | | | The full patch is available as: http://php.net/~helly/php-re2c-5.3-20080316.diff.txt This is against php-re2c repository version 98 An older patch against version 97 is available under: http://php.net/~helly/php-re2c-97-20080316.diff.txt | ||||
* | Improve the Darwin 9 hack considerably and switch to using dl*() instead of ↵ | Felipe Pena | 2008-03-10 | 1 | -1/+12 |
| | | | | NS*() on Darwin 8+. (Patch by Gwynne) | ||||
* | Make MEMORY_LIMIT and ZEND_USE_MALLOC_MM to be always enabled. They don't ↵ | Dmitry Stogov | 2006-12-20 | 1 | -23/+0 |
| | | | | make any significant slowdown, but incrise maintainability a lot. Note that the setting of memory_limit wasn't changes (neither in main/main.c nor in php.ini) and it still set to 16M. | ||||
* | Fixed random generation of cookies and canaries | Dmitry Stogov | 2006-12-18 | 1 | -0/+7 |
| | |||||
* | Removed unused macro USE_ZEND_ALLOC | Dmitry Stogov | 2006-09-14 | 1 | -9/+0 |
| | |||||
* | New memory manager | Dmitry Stogov | 2006-07-18 | 1 | -6/+106 |
| | |||||
* | reordered + added msg to configure output for PHP_ZEND_VM | foobar | 2005-06-14 | 1 | -12/+16 |
| | |||||
* | typofix | foobar | 2005-06-14 | 1 | -2/+1 |
| | |||||
* | fix standalone build | foobar | 2005-06-14 | 1 | -2/+7 |
| | |||||
* | -Moved --disable-zend-memory-manager where it belongs | foobar | 2005-06-07 | 1 | -0/+18 |
| | |||||
* | - Unify the "configure --help" texts | foobar | 2005-05-29 | 1 | -6/+6 |
| | |||||
* | avoid code duplication in bison version test | Hartmut Holzgraefe | 2005-05-29 | 1 | -19/+0 |
| | |||||
* | - Cache the version check results | foobar | 2005-02-27 | 1 | -12/+16 |
| | | | | | # ..and prepare for --enable-developer-mode | ||||
* | Hack the planet | foobar | 2005-02-23 | 1 | -1/+4 |
| | |||||
* | Fix cross-compile | foobar | 2005-02-22 | 1 | -1/+1 |
| | |||||
* | - Compile fix for systems without int32_t typedef | foobar | 2005-02-17 | 1 | -20/+25 |
| | |||||
* | - Compile fix for systems without uint32_t typedef | foobar | 2005-01-22 | 1 | -0/+23 |
| | |||||
* | MFB_4_3: Quote macro names in AC_DEFUN() | foobar | 2004-12-30 | 1 | -7/+7 |
| | |||||
* | - Don't show grep outputs | Moriyoshi Koizumi | 2004-11-03 | 1 | -1/+1 |
| | |||||
* | - Checks for Darwin'ish systems that uses Mach-O, which apparently doesn't | Moriyoshi Koizumi | 2004-11-03 | 1 | -0/+7 |
| | | | | | support weak symbol aliasing at this time. | ||||
* | - Commit the variable fetch optimization. | Andi Gutmans | 2004-10-04 | 1 | -0/+16 |
| | | | | | | | - Extensions which delete global variables need to use new special function - delete_global_variable() (I'm about to rename it) to remove them. - Will post to internals@ or via commit messages if there's anything else. | ||||
* | MFB bison configure test fix | Rasmus Lerdorf | 2003-10-07 | 1 | -1/+1 |
| | |||||
* | Aligned configure help texts. | foobar | 2003-10-03 | 1 | -5/+5 |
| | |||||
* | check for mach-o/dyld.h - needed for non-PHP ZE build | Stanislav Malyshev | 2003-09-07 | 1 | -0/+1 |
| | |||||
* | - added script encoding support to Zend Engine 2. | Masaki Fujimoto | 2003-08-11 | 1 | -0/+13 |
| | | | | | | | this enables ZE2 to gracefully parse scripts written in UTF-8 (with BOM), UTF-16, UTF-32, Shift_JIS, ISO-2022-JP etc... (when configured with '--enable-zend-multibyte' and '--enable-mbstring') | ||||
* | Add stdlib.h too - it is needed fot strto{ld} | Stanislav Malyshev | 2003-03-20 | 1 | -0/+1 |
| | |||||
* | - Fixed bug #14245 ('make install' fails on AIX when using --with-apxs). | foobar | 2003-02-25 | 1 | -1/+0 |
| | |||||
* | relabel | Zeev Suraski | 2003-01-19 | 1 | -6/+6 |
| | |||||
* | - MFZE1 | Andi Gutmans | 2002-11-15 | 1 | -0/+4 |
| | |||||
* | - Add \n to configure fprintf | Andi Gutmans | 2002-08-23 | 1 | -1/+1 |
| | |||||
* | Fixed 3 major failures in this test: | foobar | 2002-07-25 | 1 | -25/+27 |
| | | | | | | | | | | | | | | | | | | | 1. Tests work better when they are actually run.. 2. When file is opened, it should be closed sometime too. 3. AC_TRY_RUN cleans after itself (rm -f conftest.*), so it's good idea to read the values while the file still exists. # # James, TEST BEFORE YOU COMMIT!!!!!!! # # Andi, I get these results (in Linux/i386): # # ZEND_MM_ALIGNMENT 4 # ZEND_MM_ALIGNMENT_LOG2 2 # # Weren't these supposed to be 8 and 3 ? # | ||||
* | move testing for the alignment values into configure. | James Cox | 2002-07-24 | 1 | -0/+45 |
| | |||||
* | ws fixes. | James Cox | 2002-07-24 | 1 | -17/+0 |
| | |||||
* | IMHO, ZTS should no longer be labeled experimental. | Sebastian Bergmann | 2002-06-24 | 1 | -1/+1 |
| | |||||
* | MFZE1: Change default value of inline-opt to yes (Sascha). | Sebastian Bergmann | 2002-04-22 | 1 | -3/+3 |
| | |||||
* | MFZE1 (AIX fixes) | Sebastian Bergmann | 2001-12-11 | 1 | -1/+6 |
| | |||||
* | - Fix typo | Andi Gutmans | 2001-11-30 | 1 | -2/+2 |
| | |||||
* | Add dlsym underscore detection, by Jani Taskinen | Stanislav Malyshev | 2001-08-26 | 1 | -0/+14 |
| | |||||
* | Merge from branch - move to standard C scanners in thread safe mode | Zeev Suraski | 2001-08-06 | 1 | -42/+1 |
| |