summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorFrederick Martian <fredmartian@gmail.com>2025-12-05 16:32:59 +0100
committerAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2025-12-10 20:33:58 +0200
commit23a3cdddeebcb1cd06691f81464bd059f5649650 (patch)
tree92e44dc8822739efdcac212cce1be9354d3f8bd8 /indra
parent0fed0bfe33f3db4cb12295e6dfa404b1313afc78 (diff)
Add header include for apr_signal.h that was removed from llapr.h as it was not neededanywhere else
Diffstat (limited to 'indra')
-rw-r--r--indra/llcommon/llapp.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llcommon/llapp.cpp b/indra/llcommon/llapp.cpp
index c532620daa..5829d2be49 100644
--- a/indra/llcommon/llapp.cpp
+++ b/indra/llcommon/llapp.cpp
@@ -37,7 +37,7 @@
#endif
#include "llcommon.h"
-#include "llapr.h"
+
#include "llerrorcontrol.h"
#include "llframetimer.h"
#include "lllivefile.h"
@@ -53,6 +53,8 @@
//
// Signal handling
#ifndef LL_WINDOWS
+#include "apr_signal.h"
+
# include <signal.h>
# include <unistd.h> // for fork()
void setup_signals();