[cmake-commits] king committed ProcessUNIX.c 1.69 1.70

cmake-commits at cmake.org cmake-commits at cmake.org
Wed Jun 27 11:39:18 EDT 2007


Update of /cvsroot/CMake/CMake/Source/kwsys
In directory public:/mounts/ram/cvs-serv23810

Modified Files:
	ProcessUNIX.c 
Log Message:
COMP: Fix for platforms that do not have siginfo on their signal handlers.


Index: ProcessUNIX.c
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/kwsys/ProcessUNIX.c,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -d -r1.69 -r1.70
--- ProcessUNIX.c	16 May 2007 17:10:45 -0000	1.69
+++ ProcessUNIX.c	27 Jun 2007 15:39:16 -0000	1.70
@@ -100,8 +100,8 @@
 # define KWSYSPE_USE_SELECT 1
 #endif
 
-/* BeOS does not have siginfo on its signal handlers.  */
-#if !defined(__BEOS__)
+/* Some platforms do not have siginfo on their signal handlers.  */
+#if defined(SA_SIGINFO) && !defined(__BEOS__)
 # define KWSYSPE_USE_SIGINFO 1
 #endif
 



More information about the Cmake-commits mailing list