summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* PHP 5.5.0alpha5php-5.5.0alpha5David Soria Parra2013-02-192-3/+3
|
* News for PHP 5.5.0 Alpha 5David Soria Parra2013-02-191-1/+1
|
* Merge branch 'PHP-5.4' into PHP-5.5Dmitry Stogov2013-02-182-6/+40
|\ | | | | | | | | | | | | | | | | * PHP-5.4: Fixed bug #64070 (Inheritance with Traits failed with error) Conflicts: NEWS Zend/zend_compile.c
| * Fixed bug #64070 (Inheritance with Traits failed with error)Dmitry Stogov2013-02-183-6/+41
| |
* | Cleanup some multicast code; fix for mac os x?Gustavo Lopes2013-02-173-38/+45
| | | | | | | | | | | | | | | | | | | | | | When I moved some stuff from sockets.c to multicast.c, I did not copy some conditional defines for systems without the RFC 3678 API. I moved such defines to multicast.h so both sockets.c and multicast.c can benefit from them and I prefixed them with PHP_ so that it's less confusing: now PHP_MCAST_* are defined to either the MCAST_* RFC 3678 APIs or to legacy APIs and MCAST_* always mean the (possibly undefined) system definitions.
* | fix protosStanislav Malyshev2013-02-171-5/+5
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2013-02-172-0/+26
|\ \ | |/ | | | | | | * PHP-5.4: fix bug #61930: openssl corrupts ssl key resource when using openssl_get_publickey()
| * fix bug #61930: openssl corrupts ssl key resource when using ↵Stanislav Malyshev2013-02-173-0/+30
| | | | | | | | openssl_get_publickey()
* | fix free vs. curl_freeAnatol Belski2013-02-171-2/+2
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2013-02-170-0/+0
|\ \ | |/ | | | | | | * PHP-5.4: update NEWS
| * update NEWSStanislav Malyshev2013-02-171-0/+2
| |
* | Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2013-02-174-0/+13
|\ \ | |/ | | | | | | * PHP-5.4: Added HTTP codes as of RFC 6585
| * Added HTTP codes as of RFC 6585Jonh Wendell2013-02-174-0/+13
| | | | | | | | | | | | | | | | | | Added descriptions for the new HTTP codes: - 428 Precondition Required - 429 Too Many Requests - 431 Request Header Fields Too Large - 511 Network Authentication Required
* | Merge branch 'PHP-5.4' into PHP-5.5Xinchen Hui2013-02-171-0/+25
|\ \ | |/
| * Merge branch 'PHP-5.3' into PHP-5.4Xinchen Hui2013-02-171-0/+25
| |\
| | * Fixed bug #64228 (RecursiveDirectoryIterator always assumes SKIP_DOTS)Xinchen Hui2013-02-173-1/+31
| | |
* | | Merge branch 'PHP-5.4' into PHP-5.5Xinchen Hui2013-02-161-2/+0
|\ \ \ | |/ /
| * | Fix test failed after 0ea83ff8478d867ebf1603a43cd5d3432022cee7Xinchen Hui2013-02-161-2/+0
| | |
| * | +Fixed bug #64124 (IPv6 malformed). (Boris Lytochkin)Boris Lytochkin2013-02-141-0/+3
| | |
* | | Exceptions triggered by undefined variable should be handled before FATAL errorXinchen Hui2013-02-164-5/+222
| | | | | | | | | | | | this is a enhancement of the fix for bug #64135
* | | Fixed bug #64124 (IPv6 malformed)Boris Lytochkin2013-02-141-0/+3
| | |
* | | Merge branch 'PHP-5.4' into PHP-5.5Dmitry Stogov2013-02-131-2/+2
|\ \ \ | |/ / | | | | | | | | | * PHP-5.4: Proper bit reset code
| * | Merge branch 'PHP-5.3' into PHP-5.4Dmitry Stogov2013-02-131-2/+2
| |\ \ | | |/ | | | | | | | | | * PHP-5.3: Proper bit reset code
| | * Proper bit reset codeDmitry Stogov2013-02-131-2/+2
| | |
* | | Merge branch 'PHP-5.4' into PHP-5.5Ard Biesheuvel2013-02-131-1/+1
|\ \ \ | |/ /
| * | Fixed bug #64197 (_Offsetof() macro used but not defined on ARM/Clang)Ard Biesheuvel2013-02-131-1/+1
| | | | | | | | | | | | | | | | | | Updated the code to test for __ARMCC_VERSION instead of __arm, as that is a more reliable indicator of whether the ARMCC compiler is being used.
* | | Update config.sub/config.guess to latest GPLv2 upstream versionArd Biesheuvel2013-02-112-327/+473
| | | | | | | | | | | | | | | | | | | | | | | | This adds the ability to configure/build for/on 64-bit ARMv8, which uses the host triplet 'aarch64-linux-gnu'. Source: http://git.savannah.gnu.org/gitweb/?p=config.git;h=306afce
* | | NEWS updateArd Biesheuvel2013-02-111-0/+2
| | |
* | | Low-level ARM optimizationsArd Biesheuvel2013-02-112-10/+80
| | | | | | | | | | | | | | | - added ARM versions of zend_mm_high_bit()/zend_mm_low_bit() - improved safe_address()
* | | Improve x86 inline assemblerArd Biesheuvel2013-02-112-37/+65
| | | | | | | | | | | | | | | | | | | | | - added cc annotation to inline asm that clobbers the condition flags - remove hardcoded constants (IS_LONG,IS_DOUBLE) - remove hardcoded offsets (zval->value, zval->type)
* | | build fixesAndrey Hristov2013-02-111-3/+3
| | |
* | | NEWSRemi Collet2013-02-111-0/+1
| | |
* | | Merge branch 'PHP-5.4' into PHP-5.5Remi Collet2013-02-111-1/+2
|\ \ \ | |/ / | | | | | | | | | * PHP-5.4: Fixed bug #64142 (dval to lval different behavior on ppc64)
| * | Fixed bug #64142 (dval to lval different behavior on ppc64)Remi Collet2013-02-112-1/+5
| | | | | | | | | | | | | | | See discussion on internals http://marc.info/?t=136042277700003&r=1&w=2
* | | Merge branch 'PHP-5.4' into PHP-5.5Stanislav Malyshev2013-02-090-0/+0
|\ \ \ | |/ / | | | | | | | | | | | | * PHP-5.4: update NEWS mb_split() can now handle empty matches like preg_split() does.
| * | update NEWSStanislav Malyshev2013-02-091-0/+4
| | |
| * | mb_split() can now handle empty matches like preg_split() does.Moriyoshi Koizumi2013-02-104-40/+49
| | |
| * | Merge branch 'PHP-5.4' of https://git.php.net/push/php-src into PHP-5.4Boris Lytochkin2013-02-071-0/+2
| |\ \
* | | | mb_split() can now handle empty matches like preg_split() does.Moriyoshi Koizumi2013-02-103-40/+46
| | | |
* | | | news for mysqli_savepoint and mysql_release_savepointAndrey Hristov2013-02-081-1/+3
| | | |
* | | | update test caseAndrey Hristov2013-02-081-0/+46
| | | |
* | | | mysqli_savepoint()/mysqli_release_savepoint()Andrey Hristov2013-02-085-3/+98
| | | |
* | | | Add the constants needed for mysqli_commit(), _rollback() andAndrey Hristov2013-02-082-3/+20
| | | | | | | | | | | | | | | | begin_transaction()
* | | | Add savepoint and rollback to savepoint supportAndrey Hristov2013-02-083-0/+72
| | | |
* | | | add the news about recent commitsAndrey Hristov2013-02-081-0/+11
| | | |
* | | | Merge branch 'PHP-5.5' of ssh://git.php.net/php-src into PHP-5.5Andrey Hristov2013-02-077-20/+146
|\ \ \ \
| * \ \ \ Merge branch 'PHP-5.5' of https://git.php.net/push/php-src into PHP-5.5Boris Lytochkin2013-02-079-17/+244
| |\ \ \ \
| | * | | | Forgot test scriptXinchen Hui2013-02-071-0/+17
| | | | | |
| | * | | | Merge branch 'PHP-5.5' of git.php.net:php-src into PHP-5.5Xinchen Hui2013-02-073-8/+148
| | |\ \ \ \
| | * | | | | Fixed bug #64135 (Exceptions from set_error_handler are not always propagated)Xinchen Hui2013-02-074-9/+77
| | | | | | |