Skip to content
Snippets Groups Projects
  1. Mar 03, 2015
    • Domen Vrankar's avatar
      Glob: Handle symlink cycles in directory paths · 5d6204e9
      Domen Vrankar authored and Brad King's avatar Brad King committed
      Prevent cyclic recursion of type "a/b/c -> a" when glob recurse is used
      with follow symlinks so that each directory symbolic link is traversed
      only once and skipped on revisit.
      
      Change-Id: I6f52489198d692c3c0b0d94986db0e664d050342
      5d6204e9
  2. Feb 27, 2015
  3. Feb 25, 2015
    • Domen Vrankar's avatar
      Glob: Remove addition of extra '/' · 1b75ad3d
      Domen Vrankar authored and Brad King's avatar Brad King committed
      When globing non recursive with for example '/a/*/*' the result
      contained '//' instead of a single slash between directories.
      
      Change-Id: I6adb672cde6e327c8fda6e29ff7d3b8ae5c7cb6b
      1b75ad3d
    • Domen Vrankar's avatar
      Glob: Remove dead code · 7c9a970a
      Domen Vrankar authored and Brad King's avatar Brad King committed
      In RecurseDirectory and ProcessDirectory a "fullname" variable is
      computed but not used.  Remove it altogether.
      
      Change-Id: I97493f7a34f1a600715c8301ccd6377c3422212f
      7c9a970a
  4. Feb 24, 2015
  5. Jan 23, 2015
  6. Jan 20, 2015
  7. Jan 09, 2015
    • Ben Boeckel's avatar
      Add missing malloc return value casts · 425fa73e
      Ben Boeckel authored and Brad King's avatar Brad King committed
      Clang 3.5.0 errors out on the implicit void* -> T* cast.
      
      Change-Id: Ie0b0dd25a32e1a5692900d9f1035a423a056c413
      425fa73e
    • Stephen Kelly's avatar
      Workaround SolarisStudio bug with libstdc++. · d30c9b03
      Stephen Kelly authored and Brad King's avatar Brad King committed
      Using iostream and cxxabi.h together causes a compile failure
      
       .../CC-gcc/include/c++/4.8.2/cxxabi.h", line 131: Error: Only one of a
       set of overloaded functions can be extern "C".
      
      See https://community.oracle.com/thread/3644901 for details.
      
      This only happens if the iostream include is before the cxxabi include.
      
      The available solutions are: re-order the includes in
      SystemInformation.cxx, skip the test for KWSYS_CXX_HAS_CXXABI, or cause
      it to fail by adding the include.  Do the latter for now.
      
      Change-Id: Ia1a6a6fca12eb9a42f4a4be5252f22fb6e74a318
      d30c9b03
    • Stephen Kelly's avatar
      SystemTools: Fix build with SunCC/stlport. · af86ac7d
      Stephen Kelly authored and Brad King's avatar Brad King committed
      The <fcntl.h> header needs to be included before <string> is included
      when using stlport. Otherwise:
      
      "SystemTools.cxx", line 1240: Error: UTIME_OMIT is not defined.
      "SystemTools.cxx", line 1240: Error: UTIME_NOW is not defined.
      "SystemTools.cxx", line 1241: Error: AT_FDCWD is not defined.
      
      Change-Id: I3441ae3a7007c53ad97dea42ec48fedca8cc010c
      af86ac7d
    • Stephen Kelly's avatar
      SystemTools: Refactor selection of Windows directory APIs · e4fe1d1a
      Stephen Kelly authored and Brad King's avatar Brad King committed
      Change-Id: I08ee07db55b21ab886658d2ae50a82775180f037
      e4fe1d1a
  8. Jan 08, 2015
  9. Dec 23, 2014
  10. Dec 18, 2014
  11. Dec 16, 2014
    • Brad King's avatar
      Directory: Work around PGI problem with Linux Large File Support · cc4046a8
      Brad King authored
      The "/usr/include/dirent.h" header on Linux uses a glibc __REDIRECT
      to map readdir to readdir64, but that is defined only when using
      a GNU-like compiler.  Otherwise it defines readdir to readdir64
      via the C preprocessor, but forgets to define dirent to dirent64.
      
      The fix in commit 2f3c4192 (add support for the Portland Compiler to
      CMake, 2007-09-17) does not seem to work on all machines.  Instead try
      to map dirent to dirent64 whenever the preprocessor defines readdir to
      readdir64 with PGI and glibc.
      
      Change-Id: I6d4fc4cb48e5481f6ac8ed3928c0eb6c6ef0564d
      cc4046a8
  12. Dec 15, 2014
  13. Dec 12, 2014
  14. Dec 10, 2014
    • Jean-Christophe Fillion-Robin's avatar
      SystemInformation: Improve Get(Available/Total)VirtualMemory for windows · c38ba638
      Jean-Christophe Fillion-Robin authored
      Currently kwsys can only return ullTotalVirtual, which is not
      a very useful value, as memory allocation will fail if we exhaust
      the ullTotalPageFile limit.
      
      For example, on a windows workstation, GlobalMemoryStatusEx
      returns:
      ullTotalVirtual = 128TB
      ullTotalPageFile = 16GB
      
      This commit updates the function Get(Available/Total)VirtualMemory to
      use page file size.
      
      Change-Id: I461e5f0a975432c31fc7370efe8467c61fea1bb3
      c38ba638
  15. Nov 14, 2014
    • Brad King's avatar
      SharedForward: Hard-code the ldpath buffer size to below VS 14 limit · dec9c30b
      Brad King authored
      Visual Studio 14 (2015) complains if a static character array is
      declared with more than 65535 elements.  This limit should be large
      enough for SharedForward clients, so just hard-code that instead of
      trying to compute a limit.
      
      Change-Id: Ib24195b0d0972bdabaf5a18b93a1a9b8c43dc773
      dec9c30b
  16. Nov 12, 2014
  17. Nov 11, 2014
  18. Oct 31, 2014
  19. Oct 16, 2014
  20. Oct 14, 2014
    • Ben Boeckel's avatar
      Avoid if() quoted auto-dereference · 9bf03363
      Ben Boeckel authored
      When testing CMAKE_C_COMPILER_ID values, do not explicitly dereference
      or quote the variable.  We want if() to auto-dereference the variable
      and not its value.  While at it, use STREQUAL instead of MATCHES.
      
      Change-Id: I7098fb6474500605b0fe78d764dd2d8afe385f50
      9bf03363
  21. Oct 02, 2014
  22. Sep 25, 2014
    • Brad King's avatar
      Suppress deprecation warnings for GetVersionEx · 29ffaf43
      Brad King authored
      Visual Studio 12 (2013) deprecated GetVersionEx:
      
        warning C4996: 'GetVersionExW': was declared deprecated
      
      in favor of either "versionhelpers.h" or VerifyVersionInfo, neither of
      which exist in some of the older compilers we support.  Rather than
      try to port conditionally to VerifyVersionInfo, simply suppress the
      warning for now.
      
      Change-Id: I85a6547c7dc25a104d4fe9b4034efdc5cea215ef
      29ffaf43
  23. Sep 19, 2014
    • Sean McBride's avatar
      SystemInformation: Fix clang -Wtautological-pointer-compare warning · 6aa1f800
      Sean McBride authored and Brad King's avatar Brad King committed
      warning: comparison of array 'unameInfo.release' not equal to a null
               pointer is always true [-Wtautological-pointer-compare]
        if( unameInfo.release!=0 && strlen(unameInfo.release)>=3 )
            ~~~~~~~~~~^~~~~~~  ~
      
      Indeed an array declared as 'char foo[x]' can never be NULL.
      Removed check against null.
      
      Change-Id: I0352ad50049d926e78b9ecc796493e898b1bfdb7
      6aa1f800
  24. Sep 08, 2014
Loading