summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Set versionsphp-7.0.24PHP-7.0.24Anatol Belski2017-09-263-4/+4
|
* Fix test failure on 32-bitAnatol Belski2017-09-121-1/+1
| | | | (cherry picked from commit 7674b5e5749e8c0076357167ca553f153c94e6d1)
* update NEWSphp-7.0.24RC1Anatol Belski2017-09-121-0/+1
|
* Fixed bug #75193 segfault in collator_convert_object_to_stringRemi Collet2017-09-122-2/+20
| | | | (cherry picked from commit b09497c0e2b923efef5c6c30789bc82687af9e26)
* Set versions and dateAnatol Belski2017-09-123-4/+4
|
* [ci skip] Fix news entry formatAnatol Belski2017-09-121-1/+1
|
* fix bug #75173 incorrect behavior of AppendIterator::append in foreach loopjhdxr2017-09-123-1/+23
|
* Fixed bug #46781 (BC math handles minus zero incorrectly)Christoph M. Becker2017-09-113-0/+20
| | | | | | | Actually, there is no negative zero at all. We obey Postel's law, and still accept negative zeroes, but we store them as positive zeroes after the conversion from string, i.e. we normalize before further processing.
* Fork test to keep up with libxsl >= 1.1.30Anatol Belski2017-09-112-0/+207
| | | | | | The behavior of date parsing has changed and is reflected in the changelog. Invalid dates are not accepted, in particular dates with a negative year, as in this test.
* Add symbol to libxml exportsAnatol Belski2017-09-111-0/+1
|
* Fix test compat with libxml2 2.9.5Anatol Belski2017-09-111-3/+1
| | | | One warning disappeared, but the flow is still valid.
* Fix test compat with libxml2 2.9.5Anatol Belski2017-09-111-1/+1
| | | | From 2.9.5 on libxml explcitly initializes the keepBlanks flag.
* Fix test compatibility with libxml2 2.9.5Anatol Belski2017-09-111-2/+2
|
* Fixed bug #73730 (textdomain(null) throws in strict mode)Christoph M. Becker2017-09-103-4/+23
| | | | | The $text_domain parameter may be NULL, which we have to cater to explicitly with regard to strict_types.
* Fix bug75178.phpt on WindowsChristoph M. Becker2017-09-092-0/+24
| | | | | | bug75178.phpt fails on Windows, because the stderr output is not interspersed with stdout output there, but rather is appended to the end. The fix is analogous to bug72093.phpt.
* Fixed bug #75178 (bcpowmod() misbehaves for non-integer base or modulus)Christoph M. Becker2017-09-093-7/+34
| | | | | | | | | | Since `bcpowmod()` does not support non-integral operands, we have to truncate these in addition to emitting a respective warning. We also have to work with the truncated values in the following. We recognize that the division by one to enforce the truncation is actually overkill, but we stick with it for now, and shall tackle the issue for PHP 7.3.
* Add BC define for users of the typoed zend_symbtable_add_newSara Golemon2017-09-071-0/+4
|
* Fix typo in zend_symtable_add_new() API nameSara Golemon2017-09-072-2/+2
|
* Fixed bug #54598 (bcpowmod() may return 1 if modulus is 1)Christoph M. Becker2017-09-073-8/+32
| | | | | `x mod 1` is always zero; we have to take the scale into account, though.
* Fixed bug #44995 (bcpowmod() fails if scale != 0)Christoph M. Becker2017-09-063-1/+20
| | | | | `bc_divmod()` is supposed to do integer division, so we must not apply a scale factor here.
* Add missing null terminationNikita Popov2017-09-051-0/+3
|
* Fixed bug #70470Bouke van der Bijl2017-09-054-28/+123
|
* Fix commandAnatol Belski2017-09-021-1/+1
|
* Fixed bug #75139 (libgd/gd_interpolation.c:1786: suspicious if ?)Christoph M. Becker2017-09-022-2/+3
| | | | | | | | We back-port https://github.com/libgd/libgd/commit/dd48286 even though we cannot come up with a regression test, because the erroneous condition appears to be impossible to trigger. We also parenthesize the inner ternary operation to avoid confusion.
* Make for exclusion per regexAnatol Belski2017-08-311-0/+14
|
* Extend ignore list for DLLs to not to look afterAnatol Belski2017-08-311-2/+5
| | | | fix typo
* Fix `nmake install` fails when there are no shared extensionsDylan K. Taylor2017-08-311-3/+3
| | | | | | check for existence instead of muting everything check for exe existence before trying to copy
* Copy dependencies of the core DLL in `nmake snap` for statically-compiled ↵Dylan K. Taylor2017-08-311-1/+2
| | | | extensions when packaging builds
* move AC_DEFINE in the right position (in bundled lib conditon)Remi Collet2017-08-311-1/+1
|
* Move to next bin SDK version for AppVeyorAnatol Belski2017-08-281-1/+1
|
* Fixed bug #75124 (gdImageGrayScale() may produce colors)Christoph M. Becker2017-08-274-0/+41
| | | | | | | We have to make sure to avoid alpha-blending issues by explicitly switching to `gdEffectReplace` and to restore the old value afterwards. This is a port of <https://github.com/libgd/libgd/commit/a7a7ece>.
* Fixed bug #75090Thomas Punt2017-08-253-11/+37
|
* update libs versionsAnatol Belski2017-08-251-1/+1
|
* From documentation, only the sign of returned value is relevantRemi Collet2017-08-241-8/+8
| | | | With recent glibc, memcmp sometime return a negative value instead of -1
* Merge branch 'pull-request/2534' into PHP-7.0Tianfang Yang2017-08-222-5/+50
|\ | | | | | | | | * pull-request/2534: Fixed bug #74631 (PDO_PCO with PHP-FPM: OCI environment initialized before PHP-FPM sets it up)
| * Fixed bug #74631 (PDO_PCO with PHP-FPM: OCI environment initialized before ↵Ingmar Runge2017-08-222-5/+50
|/ | | | PHP-FPM sets it up)
* Fixed bug #75097 (gethostname fails if your host name is 64 chars long)Andrea Faulds2017-08-192-2/+4
| | | | | | | | PHP contained two different off-by-one errors, which are fixed here. First, it created a buffer of size HOST_NAME_MAX, not adding space for a null terminator. Second, it subtracted 1 from the size of that buffer when passing its size to gethostname(), despite gethostname() expecting it to be a buffer size including space for a terminating null byte, not a string length.
* [ci skip] update NEWSAnatol Belski2017-08-191-0/+3
|
* Fix issues with phpt and EXTENSION on windows (BUG 75042)John Boehr2017-08-194-4/+48
| | | | | | | | | | | | | | | | | | | | | | | * Commands are not properly escaped for windows * Specifying "-n" to check loaded modules causes "Module already loaded" warning * Extensions to be loaded need the "php_" prefix on Windows Bug: https://bugs.php.net/bug.php?id=75042 Add back -n flag to fetch loaded extensions in run-tests.php Add test for phpt EXTENSIONS directive Add a second test for bug 75042 Add test to test loading of nonexistent shared module with the EXTENSIONS phpt block Pass ini settings when checking loaded extensions Fix skipifs
* Fix .pgd name for ts buildAnatol Belski2017-08-191-1/+7
|
* NEWSRemi Collet2017-08-181-0/+2
|
* Fixed bug #75093 OpenSSL support not detectedRemi Collet2017-08-181-0/+3
|
* Fix phpize exit statusAnatol Belski2017-08-181-2/+7
| | | | | Configure and others are generated, not copied. Seems there's yet much more to do wrt exit status catching.
* Add dump env targetAnatol Belski2017-08-181-0/+5
|
* Revert "Upgrade timelib to 2017.05beta7"Derick Rethans2017-08-1649-14509/+11781
| | | | This reverts commit bdd56f31078bf1f34341943603cf6aaa72e0db5c.
* Revert "Remove removed header files from configuration files."Derick Rethans2017-08-162-2/+2
| | | | This reverts commit 3df753c6ca3ebc95dc0e837b2d4dc20753b5aea2.
* Fixed stupid testDerick Rethans2017-08-161-0/+1
|
* Added timelib version to phpinfo()Derick Rethans2017-08-161-0/+1
|
* cleanupRemi Collet2017-08-161-23670/+0
|
* Remove removed header files from configuration files.Derick Rethans2017-08-152-2/+2
|