diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2009-04-23 15:09:47 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2009-04-23 15:09:47 (GMT) |
commit | 7fc99c94d4af79083160dea4eebba7c471954110 (patch) | |
tree | 45d2dce55e3f3e44cdea05c73624389907c4bb02 /Source/kwsys/kwsysPrivate.h | |
parent | d847ca8e270685826222b4ab106a380f9a5e7db0 (diff) | |
download | CMake-7fc99c94d4af79083160dea4eebba7c471954110.zip CMake-7fc99c94d4af79083160dea4eebba7c471954110.tar.gz CMake-7fc99c94d4af79083160dea4eebba7c471954110.tar.bz2 |
ENH: check in almost building VMS stuff with VMSBuild directory since the bootstrap script will not work on VMS
Diffstat (limited to 'Source/kwsys/kwsysPrivate.h')
-rw-r--r-- | Source/kwsys/kwsysPrivate.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/kwsys/kwsysPrivate.h b/Source/kwsys/kwsysPrivate.h index afccd4e..dd3b75f 100644 --- a/Source/kwsys/kwsysPrivate.h +++ b/Source/kwsys/kwsysPrivate.h @@ -12,7 +12,9 @@ =========================================================================*/ #ifndef KWSYS_NAMESPACE -# error "Do not include kwsysPrivate.h outside of kwsys c and cxx files." +# ifndef __VMS +# error "Do not include kwsysPrivate.h outside of kwsys c and cxx files." +# endif #endif #ifndef _kwsysPrivate_h @@ -39,5 +41,7 @@ #define KWSYS_NAMESPACE_STRING1(x) #x #else -# error "kwsysPrivate.h included multiple times." +# ifndef __VMS +# error "kwsysPrivate.h included multiple times." +# endif #endif |