COMP: Try to fix windows builds

This commit is contained in:
Andy Cedilnik 2006-05-02 18:43:19 -04:00
parent 6597cc4808
commit 12048d8276
1 changed files with 8 additions and 1 deletions

View File

@ -26,7 +26,14 @@
#include "cmCPackLog.h"
#include <cmsys/SystemTools.hxx>
#include <sys/stat.h>
// Includes needed for implementation of RenameFile. This is not in
// system tools because it is not implemented robustly enough to move
// files across directories.
#ifdef _WIN32
# include <windows.h>
# include <sys/stat.h>
#endif
//----------------------------------------------------------------------
cmCPackTarCompressGenerator::cmCPackTarCompressGenerator()