mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
- Added recent Windows versions to php_uname and fix undefined windows version
This commit is contained in:
parent
e2d9e0ae70
commit
46c0f21386
2
NEWS
2
NEWS
@ -17,6 +17,8 @@ PHP NEWS
|
||||
Made implicit use of NULL IV a warning. (Sara)
|
||||
- Added openssl_cipher_iv_length(). (Sara)
|
||||
- Added FastCGI Process Manager (FPM) SAPI. (Tony)
|
||||
- Added recent Windows versions to php_uname and fix undefined windows
|
||||
version support. (Pierre)
|
||||
|
||||
- Changed namespaced classes so that the ctor can only be named
|
||||
__construct now. (Stas)
|
||||
|
@ -281,11 +281,22 @@ char* php_get_windows_name()
|
||||
}
|
||||
|
||||
if (VER_PLATFORM_WIN32_NT==osvi.dwPlatformId && osvi.dwMajorVersion > 4 ) {
|
||||
if (osvi.dwMajorVersion == 6 && osvi.dwMinorVersion == 0 ) {
|
||||
if (osvi.wProductType == VER_NT_WORKSTATION) {
|
||||
major = "Windows Vista";
|
||||
if (osvi.dwMajorVersion == 6) {
|
||||
if( osvi.dwMinorVersion == 0 ) {
|
||||
if( osvi.wProductType == VER_NT_WORKSTATION ) {
|
||||
major = "Windows Vista";
|
||||
} else {
|
||||
major = "Windows Server 2008";
|
||||
}
|
||||
} else
|
||||
if ( osvi.dwMinorVersion == 2 ) {
|
||||
if( osvi.wProductType == VER_NT_WORKSTATION ) {
|
||||
major = "Windows 7";
|
||||
} else {
|
||||
major = "Windows Server 2008 R2";
|
||||
}
|
||||
} else {
|
||||
major = "Windows Server 2008";
|
||||
major = "Unknow Windows version";
|
||||
}
|
||||
|
||||
pGPI = (PGPI) GetProcAddress(GetModuleHandle("kernel32.dll"), "GetProductInfo");
|
||||
|
Loading…
Reference in New Issue
Block a user