[Cmake-commits] [cmake-commits] king committed libtar.c 1.19 1.20

cmake-commits at cmake.org cmake-commits at cmake.org
Tue Oct 27 12:11:30 EDT 2009


Update of /cvsroot/CMake/CMake/Utilities/cmtar
In directory public:/mounts/ram/cvs-serv3302/Utilities/cmtar

Modified Files:
	libtar.c 
Log Message:
Fix Intel compiler warnings on Windows in cmtar

This commit disables or fixes some warnings in the 'cmtar' utility
produced by the Intel compiler on Windows.


Index: libtar.c
===================================================================
RCS file: /cvsroot/CMake/CMake/Utilities/cmtar/libtar.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -C 2 -d -r1.19 -r1.20
*** libtar.c	10 Jun 2009 15:49:02 -0000	1.19
--- libtar.c	27 Oct 2009 16:11:24 -0000	1.20
***************
*** 313,317 ****
  }
  
! 
  static void
  usage()
--- 313,317 ----
  }
  
! #if !defined(_WIN32) || defined(__CYGWIN__)
  static void
  usage()
***************
*** 323,327 ****
    exit(-1);
  }
! 
  
  #define MODE_LIST  1
--- 323,327 ----
    exit(-1);
  }
! #endif
  
  #define MODE_LIST  1



More information about the Cmake-commits mailing list