#
63869d94 |
| 19-Oct-2016 |
Kalle Sommer Nielsen |
Move these files to the same compilation batch instead of two |
#
0ffd0a02 |
| 18-Oct-2016 |
Kalle Sommer Nielsen |
Improve the config.simple.bat for Windows a little; This adds --with-config-profile=foobar, this generates a config.foobar.bat file in the root of php-src directory with the relevant configu
Improve the config.simple.bat for Windows a little; This adds --with-config-profile=foobar, this generates a config.foobar.bat file in the root of php-src directory with the relevant configuration arguments.
show more ...
|
#
64945e93 |
| 16-Oct-2016 |
Kalle Sommer Nielsen |
Implemented proc_nice() for Windows (FR #49806) The core implementation details are described in win32/nice.c for values sent to proc_nice(), these can however be discussed to maybe comply w
Implemented proc_nice() for Windows (FR #49806) The core implementation details are described in win32/nice.c for values sent to proc_nice(), these can however be discussed to maybe comply with those of wmic, Anatol, thoughts? The test supplied uses wmic for testing the functionality, it could potentially fail on systems where either wmic is not available or the system language is not english (as Microsoft tends to translate even CLI programs).
show more ...
|
#
5101bd02 |
| 29-Aug-2016 |
Anatol Belski |
Merge branch 'PHP-7.1' * PHP-7.1: extend help message
|
#
78401a7f |
| 29-Aug-2016 |
Anatol Belski |
extend help message |
#
90c38299 |
| 29-Aug-2016 |
Anatol Belski |
Merge branch 'PHP-7.1' * PHP-7.1: fix search path support also cppcheck for static analyze
|
#
faccbeb5 |
| 29-Aug-2016 |
Anatol Belski |
fix search path |
#
3ab2a587 |
| 29-Aug-2016 |
Anatol Belski |
support also cppcheck for static analyze |
#
d2ac2cd4 |
| 28-Aug-2016 |
Anatol Belski |
Merge branch 'PHP-7.1' * PHP-7.1: extend help msg fix leak extend clang vs compat options fix leak integrate clang analyzer
|
#
be0958d2 |
| 28-Aug-2016 |
Anatol Belski |
extend help msg |
#
10c2ac8c |
| 28-Aug-2016 |
Anatol Belski |
integrate clang analyzer |
#
a402d0bd |
| 06-Aug-2016 |
Kalle Sommer Nielsen |
Added a warning in case --with-mp is combined with --enable-debug This causes a D9030 since we specify a minimal build using /Gm in case we make a debug build |
#
3d3f11ed |
| 20-Jun-2016 |
Anatol Belski |
Fixed the UTF-8 and long path support in the streams on Windows. Since long the default PHP charset is UTF-8, however the Windows part is out of step with this important point. The curre
Fixed the UTF-8 and long path support in the streams on Windows. Since long the default PHP charset is UTF-8, however the Windows part is out of step with this important point. The current implementation in PHP doesn't technically permit to handle UTF-8 filepath and several other things. Till now, only the ANSI compatible APIs are being used. Here is more about it https://msdn.microsoft.com/en-us/library/windows/desktop/dd317752%28v=vs.85%29.aspx The patch fixes not only issues with multibyte filenames under incompatible codepages, but indirectly also issues with some other multibyte encodings like BIG5, Shift-JIS, etc. by providing a clean way to access filenames in UTF-8. Below is a small list of issues from the bug tracker, that are getting fixed: https://bugs.php.net/63401 https://bugs.php.net/41199 https://bugs.php.net/50203 https://bugs.php.net/71509 https://bugs.php.net/64699 https://bugs.php.net/64506 https://bugs.php.net/30195 https://bugs.php.net/65358 https://bugs.php.net/61315 https://bugs.php.net/70943 https://bugs.php.net/70903 https://bugs.php.net/63593 https://bugs.php.net/54977 https://bugs.php.net/54028 https://bugs.php.net/43148 https://bugs.php.net/30730 https://bugs.php.net/33350 https://bugs.php.net/35300 https://bugs.php.net/46990 https://bugs.php.net/61309 https://bugs.php.net/69333 https://bugs.php.net/45517 https://bugs.php.net/70551 https://bugs.php.net/50197 https://bugs.php.net/72200 https://bugs.php.net/37672 Yet more related tickets can for sure be found - on bugs.php.net, Stackoverflow and Github. Some of the bugs are pretty recent, some descend to early 2000th, but the user comments in there last even till today. Just for example, bug #30195 was opened in 2004, the latest comment in there was made in 2014. It is certain, that these bugs descend not only to pure PHP use cases, but get also redirected from the popular PHP based projects. Given the modern systems (and those supported by PHP) are always based on NTFS, there is no excuse to keep these issues unresolved. The internalization approach on Windows is in many ways different from UNIX and Linux, while it supports and is based on Unicode. It depends on the current system code page, APIs used and exact kind how the binary was compiled The locale doesn't affect the way Unicode or ANSI API work. PHP in particular is being compiled without _UNICODE defined and this is conditioned by the way we handle strings. Here is more about it https://msdn.microsoft.com/en-us/library/tsbaswba.aspx However, with any system code page ANSI functions automatically convert paths to UTF-16. Paths in some encodings incompatible with the current system code page, won't work correctly with ANSI APIs. PHP till now only uses the ANSI Windows APIs. For example, on a system with the current code page 1252, the paths in cp1252 are supported and transparently converted to UTF-16 by the ANSI functions. Once one wants to handle a filepath encoded with cp932 on that particular system, an ANSI or a POSIX compatible function used in PHP will produce an erroneous result. When trying to convert that cp932 path to UTF-8 and passing to the ANSI functions, an ANSI function would likely interpret the UTF-8 string as some string in the current code page and create a filepath that represents every single byte of the UTF-8 string. These behaviors are not only broken but also disregard the documented INI settings. This patch solves the issies with the multibyte paths on Windows by intelligently enforcing the usage of the Unicode aware APIs. For functions expect Unicode (fe CreateFileW, FindFirstFileW, etc.), arguments will be converted to UTF-16 wide chars. For functions returning Unicode aware data (fe GetCurrentDirectoryW, etc.), resulting wide string is converted back to char's depending on the current PHP charset settings, either to the current ANSI codepage (this is the behavior prior to this patch) or to UTF-8 (the default behavior). In a particular case, users might have to explicitly set internal_encoding or default_charset, if filenames in ANSI codepage are necessary. Current tests show no regressions and witness that this will be an exotic case, the current default UTF-8 encoding is compatible with any supported system. The dependency libraries are long switching to Unicode APIs, so some tests were also added for extensions not directly related to streams. At large, the patch brings over 150 related tests into the core. Those target and was run on various environments with European, Asian, etc. codepages. General PHP frameworks was tested and showed no regressions. The impact on the current C code base is low, the most places affected are the Windows only places in the three files tsrm_win32.c, zend_virtual_cwd.c and plain_wrapper.c. The actual implementation of the most of the wide char supporting functionality is in win32/ioutil.* and win32/codepage.*, several low level functionsare extended in place to avoid reimplementation for now. No performance impact was sighted. As previously mentioned, the ANSI APIs used prior the patch perform Unicode conversions internally. Using the Unicode APIs directly while doing custom conversions just retains the status quo. The ways to optimize it are open (fe. by implementing caching for the strings converted to wide variants). The long path implementation is user transparent. If a path exceeds the length of _MAX_PATH, it'll be automatically prefixed with \\?\. The MAXPATHLEN is set to 2048 bytes. Appreciation to Pierre Joye, Matt Ficken, @algo13 and others for tips, ideas and testing. Thanks.
show more ...
|
Revision tags: php-7.0.0RC7, php-5.6.16RC1, php-5.6.15, php-7.0.0RC6, php-7.0.1, php-5.6.15RC1, php-7.0.0RC5, php-5.5.30, php-5.6.14, php-7.0.0RC4 |
|
#
2dc0ce2f |
| 22-Sep-2015 |
Anatol Belski |
enable ftok implementation |
Revision tags: php-5.6.14RC1, php-7.0.0RC3, php-5.6.13, php-7.0.0RC2, php-5.5.29, php-5.4.45, php-5.6.13RC1, php-7.0.0RC1, php-5.6.12, php-5.5.28, php-7.0.0beta3, php-5.4.44, php-5.6.12RC1, php-7.0.0beta2, php-7.0.0beta1, php-5.6.11, php-5.5.27, php-5.4.43, php-5.6.11RC1, php-5.5.27RC1, php-7.0.0alpha2, php-5.5.26, php-7.0.0alpha1, php-5.6.10, php-5.4.42 |
|
#
06332e67 |
| 01-Jun-2015 |
Anatol Belski |
introduced DllMain for the main php DLL The particular need on this is because of the current situation with determining the background functionality for the gettimeofday. DllMain al
introduced DllMain for the main php DLL The particular need on this is because of the current situation with determining the background functionality for the gettimeofday. DllMain allows to initialize stuff before the DLL can be actually used. Thus, we use different time API on win7 and win8 and later, so the function pointer needs to be initialized before anything in the DLL could even demand it. The change also opens the door for the further optimizations, as now we're able to do the very basic initializations for the whole DLL before it could ever start to live. Fe on this way the TLS initialization could be done, when utilizing the DLL_THREAD_ATTACH/DETACH case. Whether it's really usable in portable way should be synced with other platforms. Be aware that it's dangerous as it possibly causes dead locks. So to use with care. One willing to add items to DllMain should better read the documentation twice and even then try to defer the necessary action.
show more ...
|
Revision tags: POST_PHP7_NSAPI_REMOVAL, PRE_PHP7_NSAPI_REMOVAL, php-5.6.10RC1, php-5.5.26RC1 |
|
#
fd256be6 |
| 26-May-2015 |
Anatol Belski |
remove fastcgi.c from the dll target |
#
fef18f4b |
| 23-May-2015 |
Xinchen Hui |
Merge branch 'master' into merge-fastcgi
|
#
22fc3baa |
| 20-May-2015 |
Kalle Sommer Nielsen |
Windows support for getrusage() * See getrusage.c/h for implementation details and limitations * Tests passes and have had their SKIPIF updated * psapi.lib is now linked to by default |
#
e383cb44 |
| 19-May-2015 |
Xinchen Hui |
Move fastcgi.c to main |
Revision tags: php-5.5.25, php-5.6.9, php-5.4.41, php-5.6.9RC1, php-5.5.25RC1 |
|
#
4e41decd |
| 16-Apr-2015 |
Kalle Sommer Nielsen |
Fixed Windows build after Dmitry's smart_str change |
Revision tags: php-5.6.8, php-5.5.24, php-5.4.40, php-5.6.8RC1, php-5.5.24RC1 |
|
#
a7b4f325 |
| 29-Mar-2015 |
Kalle Sommer Nielsen |
This should be the last of the old VC stuff in the Windows build system, also up the check to require VC11 now |
#
60cbef19 |
| 29-Mar-2015 |
Kalle Sommer Nielsen |
Drop the VC6 portable version of strtoi64, as it is no longer needed |
#
be2111e0 |
| 29-Mar-2015 |
Kalle Sommer Nielsen |
Enable all compiler warnings and linker warnings for debug builds on Windows. This is a slightly modified version of the patch in #55709 |
#
8153286e |
| 27-Mar-2015 |
Kalle Sommer Nielsen |
Drop zend_indent() as it was never used, complete or working |
#
f195870a |
| 23-Mar-2015 |
Anatol Belski |
implemented --with-all-shared option |