BUG: fix bootstrapping, md5sum disabled in bootstrapping mode

Alex
This commit is contained in:
Alexander Neundorf 2007-07-16 15:10:40 -04:00
parent edb0a70d1f
commit e69958c3cf

View File

@ -22,7 +22,6 @@
#include <cmsys/RegularExpression.hxx> #include <cmsys/RegularExpression.hxx>
#include <cmsys/Directory.hxx> #include <cmsys/Directory.hxx>
#include <cmsys/System.h> #include <cmsys/System.h>
#include <cmsys/MD5.h>
// support for realpath call // support for realpath call
#ifndef _WIN32 #ifndef _WIN32
@ -51,6 +50,7 @@
# include <memory> // auto_ptr # include <memory> // auto_ptr
# include <fcntl.h> # include <fcntl.h>
# include <cm_zlib.h> # include <cm_zlib.h>
# include <cmsys/MD5.h>
#endif #endif
#if defined(__sgi) && !defined(__GNUC__) #if defined(__sgi) && !defined(__GNUC__)
@ -1049,6 +1049,7 @@ bool cmSystemTools::CopyFileIfDifferent(const char* source,
bool cmSystemTools::ComputeFileMD5(const char* source, char* md5out) bool cmSystemTools::ComputeFileMD5(const char* source, char* md5out)
{ {
#if defined(CMAKE_BUILD_WITH_CMAKE)
if(!cmSystemTools::FileExists(source)) if(!cmSystemTools::FileExists(source))
{ {
return false; return false;
@ -1089,8 +1090,11 @@ bool cmSystemTools::ComputeFileMD5(const char* source, char* md5out)
cmsysMD5_Delete(md5); cmsysMD5_Delete(md5);
fin.close(); fin.close();
return true; return true;
#else
cmSystemTools::Message("md5sum not supported in bootstrapping mode","Error");
return false;
#endif
} }
void cmSystemTools::Glob(const char *directory, const char *regexp, void cmSystemTools::Glob(const char *directory, const char *regexp,