summaryrefslogtreecommitdiffstats
path: root/Source/kwsys/SystemTools.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2009-04-23 15:09:47 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2009-04-23 15:09:47 (GMT)
commit7fc99c94d4af79083160dea4eebba7c471954110 (patch)
tree45d2dce55e3f3e44cdea05c73624389907c4bb02 /Source/kwsys/SystemTools.cxx
parentd847ca8e270685826222b4ab106a380f9a5e7db0 (diff)
downloadCMake-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/SystemTools.cxx')
-rw-r--r--Source/kwsys/SystemTools.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/kwsys/SystemTools.cxx b/Source/kwsys/SystemTools.cxx
index 928dc37..a6512db 100644
--- a/Source/kwsys/SystemTools.cxx
+++ b/Source/kwsys/SystemTools.cxx
@@ -53,12 +53,14 @@
#ifndef _WIN32
#include <utime.h>
#include <limits.h>
-#include <sys/param.h>
#include <sys/wait.h>
#include <sys/ioctl.h>
#include <unistd.h>
#include <pwd.h>
+#ifndef __VMS
+#include <sys/param.h>
#include <termios.h>
+#endif
#include <signal.h> /* sigprocmask */
#endif