Core/Standard:
Extensions:
/* pretty string for the compiler we're using */ #if _MSC_VER >= 1500 #define MSVC_COMPILER_STRING "MSVC9 (2008)" #elif _MSC_VER >= 1400 #define MSVC_COMPILER_STRING "MSVC8 (2005)" #elif _MSC_VER >= 1310 #define MSVC_COMPILER_STRING "MSVC7.1 (.NET 2003)" #elif _MSC_VER >= 1300 #define MSVC_COMPILER_STRING "MSVC7 (.NET 2002)" #elif _MSC_VER < 1300 #define MSVC_COMPILER_STRING "MSVC6" #endif
PHP can't be built with anything less than VC6 with all the service packs. There is no way to differentiate between 2005 RTM and 2005 SP1, so always use SP1!
Partially done - pecl2 now is organized by compiler/arch
- Auto building and testing similar to gcov, only for windows