summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraham Madarasz <graham@lindenlab.com>2013-03-12 01:05:06 -0700
committerGraham Madarasz <graham@lindenlab.com>2013-03-12 01:05:06 -0700
commit067a9cdfa903f3657ffd20008ae2933fb82718c8 (patch)
tree8fd0dbb26d117896c8a691dded8b1dc6c664cd4e
parent5a51a43f23f89b88e7f9b3e16d019a23196131f6 (diff)
Better compat with non-Ubuntu distros (bare typedef sometimes conflicts with OS decl of same).
-rw-r--r--indra/llcommon/llapp.h2
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)();