diff options
author | Graham Madarasz (Graham) <graham@lindenlab.com> | 2013-03-04 16:05:12 -0800 |
---|---|---|
committer | Graham Madarasz (Graham) <graham@lindenlab.com> | 2013-03-04 16:05:12 -0800 |
commit | b19eeabd54afcfb56e864899c166b64db1ac6790 (patch) | |
tree | e1cf5061d6fb9f8e164513a994efb9ff1d344825 /indra/llcommon | |
parent | 3849ee79c3810226d1129bcbeb6bd69144aba243 (diff) |
Include signal.h instead of replicating typedef to avoid errors from redefining it...provides better compat with non-Ubuntu distros
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llapp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llapp.h b/indra/llcommon/llapp.h index a536a06ea5..afa06df23e 100644 --- a/indra/llcommon/llapp.h +++ b/indra/llcommon/llapp.h @@ -38,7 +38,7 @@ typedef LLAtomic32<U32> LLAtomicU32; class LLErrorThread; class LLLiveFile; #if LL_LINUX -typedef struct siginfo siginfo_t; +#include <signal.h> #endif typedef void (*LLAppErrorHandler)(); |