diff --git a/autobuild.xml b/autobuild.xml
index c2d063763d..fafa141e92 100644
--- a/autobuild.xml
+++ b/autobuild.xml
@@ -745,18 +745,6 @@
glm
- source_type
- git
+ license
+ MIT
+ license_file
+ LICENSES/glm_license.txt
+ copyright
+ Copyright (c) 2005 - G-Truc Creation
+ version
+ v1.0.1
+ name
+ glm
vcs_branch
refs/tags/v1.0.1-r1
vcs_revision
399cd5ba57a9267a560ce07e50a0f8c5fe3dc66f
vcs_url
git://github.com/secondlife/3p-glm.git
- version
- v1.0.1
+ canonical_repo
+ https://github.com/secondlife/3p-glm
+ description
+ OpenGL Mathematics
+ source_type
+ git
gstreamer
@@ -1418,14 +1418,6 @@
llphysicsextensions_source
- copyright
- Copyright (c) 2010, Linden Research, Inc.
- license
- internal
- license_file
- LICENSES/llphysicsextensions.txt
- name
- llphysicsextensions_source
platforms
darwin64
@@ -1477,8 +1469,16 @@
windows64
+ license
+ internal
+ license_file
+ LICENSES/llphysicsextensions.txt
+ copyright
+ Copyright (c) 2010, Linden Research, Inc.
version
1.0.b8b1f73
+ name
+ llphysicsextensions_source
llphysicsextensions_stub
@@ -2008,16 +2008,6 @@ Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors
openal
- copyright
- Copyright (C) 1999-2007 by authors.
- description
- OpenAL Soft is a software implementation of the OpenAL 3D audio API.
- license
- LGPL2
- license_file
- LICENSES/openal-soft.txt
- name
- openal
platforms
darwin64
@@ -2063,8 +2053,18 @@ Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors
windows64
+ license
+ LGPL2
+ license_file
+ LICENSES/openal-soft.txt
+ copyright
+ Copyright (C) 1999-2007 by authors.
version
1.23.1
+ name
+ openal
+ description
+ OpenAL Soft is a software implementation of the OpenAL 3D audio API.
openjpeg
@@ -2793,11 +2793,11 @@ Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors
archive
hash
- 194b4f5957c9f003c46e61a434e23a7c3d1180d6
+ f8a58d9b5d18810189c5b09ca5c5d7227346ac8d
hash_algorithm
sha1
url
- https://github.com/secondlife/3p-webrtc-build/releases/download/m114.5735.08.70-debug/webrtc-m114.5735.08.70-debug.10377605436-darwin64-10377605436.tar.zst
+ https://github.com/secondlife/3p-webrtc-build/releases/download/m114.5735.08.72/webrtc-m114.5735.08.72.10447328796-darwin64-10447328796.tar.zst
name
darwin64
@@ -2807,11 +2807,11 @@ Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors
archive
hash
- 38e0c7d30b4c40eb04e60ab199440b847cc7c6cf
+ 0037f70b29f6c85eb7ee2f030f466d774793bf41
hash_algorithm
sha1
url
- https://github.com/secondlife/3p-webrtc-build/releases/download/m114.5735.08.70-debug/webrtc-m114.5735.08.70-debug.10377605436-linux64-10377605436.tar.zst
+ https://github.com/secondlife/3p-webrtc-build/releases/download/m114.5735.08.72/webrtc-m114.5735.08.72.10447328796-linux64-10447328796.tar.zst
name
linux64
@@ -2821,11 +2821,11 @@ Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors
archive
hash
- 053fb5c873df9192e34cddcf2db1c5fdcff76ba1
+ 744ca0f034f73a10fc40182f6c099a5952cb42a6
hash_algorithm
sha1
url
- https://github.com/secondlife/3p-webrtc-build/releases/download/m114.5735.08.70-debug/webrtc-m114.5735.08.70-debug.10377605436-windows64-10377605436.tar.zst
+ https://github.com/secondlife/3p-webrtc-build/releases/download/m114.5735.08.72/webrtc-m114.5735.08.72.10447328796-windows64-10447328796.tar.zst
name
windows64
@@ -2838,7 +2838,7 @@ Copyright (c) 2012, 2014, 2015, 2016 nghttp2 contributors
copyright
Copyright (c) 2011, The WebRTC project authors. All rights reserved.
version
- m114.5735.08.70-debug.10377605436
+ m114.5735.08.72.10447328796
name
webrtc
vcs_branch
diff --git a/indra/llwebrtc/CMakeLists.txt b/indra/llwebrtc/CMakeLists.txt
index 30aaec1265..a18b716003 100644
--- a/indra/llwebrtc/CMakeLists.txt
+++ b/indra/llwebrtc/CMakeLists.txt
@@ -31,6 +31,7 @@ add_library (llwebrtc SHARED ${llwebrtc_SOURCE_FILES})
set_target_properties(llwebrtc PROPERTIES PUBLIC_HEADER llwebrtc.h)
if (WINDOWS)
+ cmake_policy(SET CMP0091 NEW)
set_target_properties(llwebrtc
PROPERTIES
LINK_FLAGS "/debug /LARGEADDRESSAWARE"
@@ -42,7 +43,10 @@ if (WINDOWS)
wmcodecdspuuid
msdmo
strmiids
- iphlpapi)
+ iphlpapi
+ libcmt)
+ # as the webrtc libraries are release, build this binary as release as well.
+ target_compile_options(llwebrtc PRIVATE "/MT")
if (USE_BUGSPLAT)
set_target_properties(llwebrtc PROPERTIES PDB_OUTPUT_DIRECTORY "${SYMBOLS_STAGING_DIR}")
endif (USE_BUGSPLAT)