From 9dec9a0c3b3138c8b2e340d4648973f21b016733 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 27 Jun 2007 11:39:16 -0400 Subject: [PATCH] COMP: Fix for platforms that do not have siginfo on their signal handlers. --- Source/kwsys/ProcessUNIX.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/kwsys/ProcessUNIX.c b/Source/kwsys/ProcessUNIX.c index bc24fc6b0..6f3d3dfc8 100644 --- a/Source/kwsys/ProcessUNIX.c +++ b/Source/kwsys/ProcessUNIX.c @@ -100,8 +100,8 @@ static inline void kwsysProcess_usleep(unsigned int msec) # 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