Skip to content
Snippets Groups Projects
  1. Jan 10, 2011
  2. Jan 09, 2011
  3. Jan 08, 2011
  4. Jan 07, 2011
    • David Cole's avatar
      Fix WOW64 registry mode on Windows 2000 (#10759) · 4b05a213
      David Cole authored
      
      CMake fails to find any registry paths on Windows 2000: according to regmon
      it fails with an access denied error. I double checked all the access rights
      and they are fine. After checking the access modes on MSDN I found that it
      says KEY_WOW64_32KEY / KEY_WOW64_64KEY are not supported on Windows 2000.
      CMake does not check if the current system supports Wow64 before applying
      these flags.
      
      This commit adds a check for IsWow64Process in kernel32.dll before adding
      these flags.
      
      Author: Axel Gembe <ago@bastart.eu.org>
      Signed-off-by: default avatarAxel Gembe <ago@bastart.eu.org>
      4b05a213
    • Kitware Robot's avatar
      KWSys Nightly Date Stamp · fd4875b4
      Kitware Robot authored
      fd4875b4
  5. Jan 06, 2011
  6. Jan 05, 2011
  7. Jan 04, 2011
  8. Jan 03, 2011
  9. Jan 02, 2011
  10. Jan 01, 2011
  11. Dec 31, 2010
  12. Dec 30, 2010
  13. Dec 29, 2010
    • Brad King's avatar
      Fix constness in compiler id detection · dbc79bd8
      Brad King authored
      Since commit 70c2dc8a (Make compiler id detection more robust,
      2008-03-10) we store compiler identification strings in test binaries
      using the form
      
        char* info = "info";
      
      Use the const-correct
      
        char const* info = "info";
      
      form instead.  This allows the C++ compiler identification to work with
      "-Werror -Wall" or equivalent flags if the compiler would warn about
      const-to-non-const conversion.
      dbc79bd8
Loading