|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2010-03-16 18:39 UTC] kalle@php.net
 
-Status:      Open
+Status:      Assigned
-Assigned To:
+Assigned To: kalle
  [2010-03-16 18:39 UTC] kalle@php.net
  [2010-03-17 17:00 UTC] kalle@php.net
  [2010-03-17 17:00 UTC] kalle@php.net
 
-Status: Assigned
+Status: Closed
  [2010-03-17 17:00 UTC] kalle@php.net
 | |||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 05:00:02 2025 UTC | 
Description: ------------ When you compile PHP-GTK with Microsoft VS.NET 2008 the compiler will not be detected properly. This could be fixed with following patch: diff -ruN php-gtk.orig/win32/config.w32.in php-gtk/win32/config.w32.in --- php-gtk.orig/win32/config.w32.in 2010-01-16 19:02:31.074820100 +0100 +++ php-gtk/win32/config.w32.in 2010-01-16 19:05:17.334329600 +0100 @@ -40,6 +40,9 @@ if (VCVERS == 14) { msversion = "Microsoft VS.NET 2005"; } + if (VCVERS == 15) { + msversion = "Microsoft VS.NET 2008"; + } STDOUT.WriteLine("Detected compiler version: " + msversion); } else { Reproduce code: --------------- cscript /nologo configure.js Expected result: ---------------- Detected compiler version: Microsoft VS.NET 2008 Actual result: -------------- Detected compiler version: unknown