summaryrefslogtreecommitdiff
path: root/win32/build
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2016-09-261-1/+1
|\ | | | | | | | | | | * PHP-7.0: update libs_versions.txt update libs_versions.txt
| * update libs_versions.txtAnatol Belski2016-09-261-1/+1
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2016-09-221-2/+2
|\ \ | |/ | | | | | | | | * PHP-7.0: update libs versions update libs versions
| * update libs versionsAnatol Belski2016-09-221-2/+2
| |
* | remove duplicated symbolAnatol Belski2016-09-011-1/+1
| |
* | add more defs for resource alloc/deallocAnatol Belski2016-08-311-0/+74
| |
* | add yet one defineAnatol Belski2016-08-311-1/+2
| |
* | extend help messageAnatol Belski2016-08-291-1/+1
| |
* | fix search pathAnatol Belski2016-08-291-2/+2
| |
* | support also cppcheck for static analyzeAnatol Belski2016-08-295-3/+516
| |
* | extend help msgAnatol Belski2016-08-281-1/+1
| |
* | extend clang vs compat optionsAnatol Belski2016-08-281-1/+1
| |
* | integrate clang analyzerAnatol Belski2016-08-282-10/+102
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2016-08-031-1/+1
|\ \ | |/ | | | | | | | | * PHP-7.0: update libs_versions.txt update libs_versions.txt
| * update libs_versions.txtAnatol Belski2016-08-031-1/+1
| |
* | Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2016-07-254-1/+13
|\ \ | |/ | | | | | | | | | | * PHP-7.0: update NEWS Enable 'nmake test' on building extensions Make phpize use PHP_PREFIX as the default location (windows)
| * Enable 'nmake test' on building extensionsy-uti2016-07-253-0/+12
| | | | | | | | | | | | On Windows, Makefile generated by phpize doesn't have the 'test' target rule. This commit fixes that and enables 'nmake test' on Windows.
| * Make phpize use PHP_PREFIX as the default location (windows)y-uti2016-07-251-1/+1
| | | | | | | | | | The default path to where an extension is installed should be PHP_PREFIX/ext on windows.
* | Merge branch 'PHP-7.0' into PHP-7.1Anatol Belski2016-07-211-6/+6
|\ \ | |/ | | | | | | | | * PHP-7.0: update libs_version.txt update libs_versions.txt
| * update libs_version.txtAnatol Belski2016-07-211-6/+6
| |
* | Merge branch 'PHP-7.0'Anatol Belski2016-07-123-2/+3
|\ \ | |/ | | | | | | | | * PHP-7.0: update NEWS Make phpize set a proper build type (windows)
| * Make phpize set a proper build type (windows)y-uti2016-07-123-2/+3
| |
* | Fixed the UTF-8 and long path support in the streams on Windows.Anatol Belski2016-06-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Fix bug #47517 php-cgi.exe missing UAC manifestmaxdax158012016-06-021-1/+8
| | | | | | | | | | | | Add a <requestedExecutionLevel> to the manifest so Windows doesn't use file and registry virtualization for backwards compatibility with pre-Vista versions.
* | Merge branch 'PHP-7.0'Anatol Belski2016-05-031-1/+1
|\ \ | |/ | | | | | | | | * PHP-7.0: update libs versions upate libs versions
| * update libs versionsAnatol Belski2016-05-031-1/+1
| |
* | Remove HAVE_CRYPT checksNikita Popov2016-03-251-3/+0
| | | | | | | | | | We always provide a crypt implementation. HAVE_CRYPT is only relevant as to whether the crypt() C function exists.
* | Remove PHP_*_CRYPT constantsNikita Popov2016-03-251-6/+0
| | | | | | | | They are always 1.
* | Merge branch 'PHP-7.0'Anatol Belski2016-03-151-5/+5
|\ \ | |/ | | | | | | | | * PHP-7.0: update libs versions update libs versions
| * update libs versionsAnatol Belski2016-03-151-5/+5
| |
* | Merge branch 'PHP-7.0'Anatol Belski2016-03-011-1/+1
|\ \ | |/ | | | | | | * PHP-7.0: extend check for add_flag
| * extend check for add_flagAnatol Belski2016-03-011-1/+1
| |
* | Merge branch 'PHP-7.0'Xinchen Hui2016-03-012-3/+20
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * PHP-7.0: Fixed another segfault with file_cache_only now Fixed bugs #71317 and #71504 add test for bug #68957 update NEWS update NEWS Fixed #54648 PDO::MSSQL forces format of datetime fields remove unneeded free parts fix leaks and add one more NULL check add NULL check fix C89 compat fix arg type fix nmake clean in phpize mode
| * fix nmake clean in phpize modeAnatol Belski2016-02-292-3/+20
| |
* | Merge branch 'PHP-7.0'Anatol Belski2016-02-141-56/+88
|\ \ | |/ | | | | | | | | * PHP-7.0: cleanup duplicated var fix file lists with subdirs passed to EXTENSION()
| * cleanup duplicated varAnatol Belski2016-02-141-4/+1
| |
| * fix file lists with subdirs passed to EXTENSION()Anatol Belski2016-02-141-57/+92
| | | | | | | | | | | | | | | | | | | | | | The underlying place responsible is the ADD_SOURCES() function. With this, the calls like EXTENSION("hello", "sub0/file0.c sub1/file1.c", ...) are working correctly. Same for ADD_SOURCES("some/dir", "sub0/file0.c sub1/file1.c", ...)
* | Merge branch 'PHP-7.0'Anatol Belski2016-02-021-1/+1
|\ \ | |/ | | | | | | | | * PHP-7.0: update libs version update libs version
| * update libs versionAnatol Belski2016-02-021-1/+1
| |
* | Merge branch 'PHP-7.0'Anatol Belski2016-02-013-3/+7
|\ \ | |/ | | | | | | | | | | * PHP-7.0: fix extensions path for nmake install fix extensions path for nmake install use correct pointer in the math
| * fix extensions path for nmake installAnatol Belski2016-02-013-3/+7
| |
* | integrate the /Gw compiler switchAnatol Belski2016-01-181-0/+4
| |
* | fix compiler version checkAnatol Belski2016-01-181-0/+2
| |
* | integrate /Zc:inline switchAnatol Belski2016-01-181-0/+3
| |
* | Merge branch 'PHP-7.0'Anatol Belski2016-01-081-7/+7
|\ \ | |/ | | | | | | | | * PHP-7.0: update libs_versions.txt update libs versions
| * update libs_versions.txtAnatol Belski2016-01-081-7/+7
| |
* | Merge branch 'PHP-7.0'Julien Pauli2016-01-041-1/+1
|\ \ | |/ | | | | | | * PHP-7.0: Happy new year (Update copyright to 2016)
| * Merge branch 'PHP-5.6' into PHP-7.0Julien Pauli2016-01-041-1/+1
| |\ | | | | | | | | | | | | | | | | | | | | | | | | * PHP-5.6: Happy new year (Update copyright to 2016) Conflicts: ext/json/php_json_encoder.h sapi/continuity/capi.c
| | * Happy new year (Update copyright to 2016)Lior Kaplan2016-01-031-1/+1
| | |
* | | Merge branch 'PHP-7.0'Lior Kaplan2016-01-012-2/+2
|\ \ \ | |/ / | | | | | | | | | | | | | | | * PHP-7.0: Update header to PHP Version 7 Happy new year (Update copyright to 2016) Happy new year (Update copyright to 2016)