Browse Source

Always include raw OS version number on Windows

Nils Maier 11 years ago
parent
commit
bd29fd2c30
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/FeatureConfig.cc

+ 1 - 0
src/FeatureConfig.cc

@@ -333,6 +333,7 @@ std::string getOperatingSystemInfo()
 #ifdef _WIN64
   rv << " (x86_64)";
 #endif // _WIN64
+  rv << " (" << ovi.dwMajorVersion << "." << ovi.dwMinorVersion << ")";
   return rv.str();
 #else //! _WIN32
 #ifdef HAVE_SYS_UTSNAME_H