[cmake-commits] hoffman committed SystemInformation.cxx 1.9 1.10
cmake-commits at cmake.org
cmake-commits at cmake.org
Thu Jan 31 15:34:11 EST 2008
Update of /cvsroot/CMake/CMake/Source/kwsys
In directory public:/mounts/ram/cvs-serv22714
Modified Files:
SystemInformation.cxx
Log Message:
ENH: fix for qnx, I hope, and fix indent stuff
Index: SystemInformation.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/kwsys/SystemInformation.cxx,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- SystemInformation.cxx 31 Jan 2008 20:10:19 -0000 1.9
+++ SystemInformation.cxx 31 Jan 2008 20:34:09 -0000 1.10
@@ -14,26 +14,6 @@
PURPOSE. See the above copyright notices for more information.
=========================================================================*/
#include "kwsysPrivate.h"
-#ifndef WIN32
- #include <sys/utsname.h> // int uname(struct utsname *buf);
-#endif
-
-#ifdef _WIN32
- #include <windows.h>
-#endif
-
-#ifdef __linux
-#include <sys/procfs.h>
-#include <sys/types.h>
-#include <unistd.h>
-#include <fcntl.h>
-#include <ctype.h> // int isdigit(int c);
-#include <errno.h> // extern int errno;
-#include <sys/time.h>
-#elif __hpux
-#include <sys/param.h>
-#include <sys/pstat.h>
-#endif
#include KWSYS_HEADER(FundamentalType.h)
#include KWSYS_HEADER(stl/string)
#include KWSYS_HEADER(stl/vector)
@@ -56,6 +36,28 @@
# include "kwsys_ios_iostream.h.in"
#endif
+
+#ifndef WIN32
+# include <sys/utsname.h> // int uname(struct utsname *buf);
+#endif
+
+#ifdef _WIN32
+# include <windows.h>
+#endif
+
+#ifdef __linux
+# include <sys/procfs.h>
+# include <sys/types.h>
+# include <unistd.h>
+# include <fcntl.h>
+# include <ctype.h> // int isdigit(int c);
+# include <errno.h> // extern int errno;
+# include <sys/time.h>
+#elif __hpux
+# include <sys/param.h>
+# include <sys/pstat.h>
+#endif
+
#include <memory.h>
#include <stdlib.h>
#include <stdio.h>
More information about the Cmake-commits
mailing list