Skip to content

Commit 21e9b38

Browse files
committed
Merge branch 'develop' of https://github.com/secondlife/viewer into callum/voice-moderation-2
2 parents c64c16a + 0da96a5 commit 21e9b38

26 files changed

+558
-229
lines changed

.github/workflows/build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
variants: ${{ matrix.configuration }}
8787
steps:
8888
- name: Checkout code
89-
uses: actions/checkout@v4
89+
uses: actions/checkout@v5
9090
with:
9191
ref: ${{ github.event.pull_request.head.sha || github.sha }}
9292

@@ -95,14 +95,14 @@ jobs:
9595
with:
9696
python-version: "3.11"
9797
- name: Checkout build variables
98-
uses: actions/checkout@v4
98+
uses: actions/checkout@v5
9999
with:
100100
repository: secondlife/build-variables
101101
ref: master
102102
path: .build-variables
103103

104104
- name: Checkout master-message-template
105-
uses: actions/checkout@v4
105+
uses: actions/checkout@v5
106106
with:
107107
repository: secondlife/master-message-template
108108
path: .master-message-template

.github/workflows/pre-commit.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
pre-commit:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- uses: actions/setup-python@v4
1616
with:
1717
python-version: 3.x
18-
- uses: pre-commit/[email protected].0
18+
- uses: pre-commit/[email protected].1

autobuild.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@
4646
<key>archive</key>
4747
<map>
4848
<key>hash</key>
49-
<string>a21487f4e3a68721fd97edef117795a1b7212a77</string>
49+
<string>3f8e58fe74e144b771858e89a5514bf354964c76</string>
5050
<key>hash_algorithm</key>
5151
<string>sha1</string>
5252
<key>url</key>
53-
<string>https://github.com/secondlife/3p-apr_suite/releases/download/v1.7.5-r1/apr_suite-1.7.5-12259255574-darwin64-12259255574.tar.zst</string>
53+
<string>https://github.com/secondlife/3p-apr_suite/releases/download/v1.7.5-r2/apr_suite-1.7.5-18696779749-darwin64-18696779749.tar.zst</string>
5454
</map>
5555
<key>name</key>
5656
<string>darwin64</string>
@@ -60,11 +60,11 @@
6060
<key>archive</key>
6161
<map>
6262
<key>hash</key>
63-
<string>45baf82d3366734e542a2a3749f495b64f5513b4</string>
63+
<string>df36114eb8fb66fdcbb190011222a7d336791d98</string>
6464
<key>hash_algorithm</key>
6565
<string>sha1</string>
6666
<key>url</key>
67-
<string>https://github.com/secondlife/3p-apr_suite/releases/download/v1.7.5-r1/apr_suite-1.7.5-12259255574-linux64-12259255574.tar.zst</string>
67+
<string>https://github.com/secondlife/3p-apr_suite/releases/download/v1.7.5-r2/apr_suite-1.7.5-18696779749-linux64-18696779749.tar.zst</string>
6868
</map>
6969
<key>name</key>
7070
<string>linux64</string>
@@ -74,11 +74,11 @@
7474
<key>archive</key>
7575
<map>
7676
<key>hash</key>
77-
<string>bdd35d3b9580d3cdcb98afae639936aaa40e24c4</string>
77+
<string>164705831819d247753c9fd608c2c1ac8dca1883</string>
7878
<key>hash_algorithm</key>
7979
<string>sha1</string>
8080
<key>url</key>
81-
<string>https://github.com/secondlife/3p-apr_suite/releases/download/v1.7.5-r1/apr_suite-1.7.5-12259255574-windows64-12259255574.tar.zst</string>
81+
<string>https://github.com/secondlife/3p-apr_suite/releases/download/v1.7.5-r2/apr_suite-1.7.5-18696779749-windows64-18696779749.tar.zst</string>
8282
</map>
8383
<key>name</key>
8484
<string>windows64</string>
@@ -91,7 +91,7 @@
9191
<key>copyright</key>
9292
<string>Copyright © 2012 The Apache Software Foundation, Licensed under the Apache License, Version 2.0.</string>
9393
<key>version</key>
94-
<string>1.7.5-12259255574</string>
94+
<string>1.7.5-18696779749</string>
9595
<key>name</key>
9696
<string>apr_suite</string>
9797
<key>description</key>

indra/cmake/APR.cmake

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,3 @@ if(DARWIN)
3131
endif()
3232

3333
target_include_directories(ll::apr SYSTEM INTERFACE ${LIBS_PREBUILT_DIR}/include/apr-1)
34-
35-
# Fix erroneous check for __attribute__ definition introduced with APR 1.7.5, causing lots of "this declaration may not have extern 'C' linkage" errors in VS
36-
file(READ ${LIBS_PREBUILT_DIR}/include/apr-1/apr.h APR_HEADER_CONTENTS)
37-
string(REPLACE "#if !(defined(__attribute__) || defined(__has_attribute))" "#if !defined(__attribute__)" APR_HEADER_CONTENTS "${APR_HEADER_CONTENTS}")
38-
file(WRITE ${LIBS_PREBUILT_DIR}/include/apr-1/apr.h "${APR_HEADER_CONTENTS}")

0 commit comments

Comments
 (0)