From 5e1a102de4f578f2ec9f5a7c4ec915707c81fdc7 Mon Sep 17 00:00:00 2001 From: Lirusaito Date: Wed, 10 Apr 2019 11:28:54 -0400 Subject: [PATCH] Dullupdate: Fix not shutting down properly? TODO: Rebuild on Linux --- autobuild.xml | 22 +++++++++------------- indra/newview/viewer_manifest.py | 6 +----- 2 files changed, 10 insertions(+), 18 deletions(-) diff --git a/autobuild.xml b/autobuild.xml index 65fec36f2..0a281b49b 100644 --- a/autobuild.xml +++ b/autobuild.xml @@ -594,24 +594,22 @@ license MPL license_file - LICENSES/dullahan.txt + LICENSES/LICENSE.txt name dullahan platforms - darwin + darwin64 archive hash - e447c0799438b1be850d7b589308d394 - hash_algorithm - md5 + 118987b1a5b56214cfdbd0c763e180da url - https://bitbucket.org/SingularityViewer/libraries/downloads/dullahan-1.1.1085-3.3497.1833.g13f506f-darwin-201902131231.tar.bz2 + http://automated-builds-secondlife-com.s3.amazonaws.com/ct2/15127/97748/dullahan-1.1.1080_3.3325.1750.gaabe4c4-darwin64-513449.tar.bz2 name - darwin + darwin64 linux64 @@ -632,9 +630,7 @@ archive hash - c3e093d40e93ff242e9b9c953ae7316c - hash_algorithm - md5 + 2ecc71350b30a1057091b9cd7af18b1c url https://depot.alchemyviewer.org/pub/windows/lib-vc142/dullahan-1.1.930-3.3282.1733.g9091548-windows-201802202358.tar.bz2 @@ -646,18 +642,18 @@ archive hash - 9c9696168fcb640feb7d64988a759b25 + 414190fd1ce3876ee3efc682b06ae65c hash_algorithm md5 url - https://depot.alchemyviewer.org/pub/windows64/lib-vc1415/dullahan-1.1.1085-3.3497.1833.g13f506f-windows64-201809230539.tar.bz2 + http://depot.alchemyviewer.org/pub/packages/windows64/msvc-1920/dullahan-1.1.1320_73.1.12-gee4b49f-chromium-73.0.3683.75-windows64-190871757.tar.bz2 name windows64 version - 1.1.1085-3.3497.1833.g13f506f + 1.1.1320_73.1.12+gee4b49f+chromium-73.0.3683.75 elfio diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index d3e6be9b1..b0c587232 100755 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -375,6 +375,7 @@ class WindowsManifest(ViewerManifest): config = 'debug' if self.args['configuration'].lower() == 'debug' else 'release' if self.prefix(src=os.path.join(pkgdir, 'bin', config), dst="llplugin"): self.path("chrome_elf.dll") + self.path("d3dcompiler_43.dll") self.path("d3dcompiler_47.dll") self.path("libcef.dll") self.path("libEGL.dll") @@ -383,18 +384,13 @@ class WindowsManifest(ViewerManifest): self.path("natives_blob.bin") self.path("snapshot_blob.bin") self.path("v8_context_snapshot.bin") - self.path("widevinecdmadapter.dll") - self.end_prefix() - # CEF runtime files for software rendering - debug - # CEF runtime files for software rendering - not debug (release, relwithdebinfo etc.) if self.prefix(src=os.path.join(pkgdir, 'bin', config, 'swiftshader'), dst=os.path.join("llplugin", 'swiftshader')): self.path("libEGL.dll") self.path("libGLESv2.dll") self.end_prefix() - # CEF files common to all configurations if self.prefix(src=os.path.join(pkgdir, 'resources'), dst="llplugin"): self.path("cef.pak")