From 583e196784646a5d64fb7c83c33e1255d8c911a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tony=20Saraj=C3=A4rvi?= Date: Thu, 26 Oct 2017 15:02:50 +0300 Subject: Cleanup of opengl32.dll replacement This one isn't needed as the vanilla OS already contains the original file. Change-Id: I210b62d4483ea78af7b5922c46f73e3ec6d44aeb Reviewed-by: Heikki Halmet --- .../qtci-windows-10-x86_64/opengl32_x86.ps1 | 52 ---------------------- 1 file changed, 52 deletions(-) delete mode 100644 coin/provisioning/qtci-windows-10-x86_64/opengl32_x86.ps1 (limited to 'coin') diff --git a/coin/provisioning/qtci-windows-10-x86_64/opengl32_x86.ps1 b/coin/provisioning/qtci-windows-10-x86_64/opengl32_x86.ps1 deleted file mode 100644 index ee101fa5..00000000 --- a/coin/provisioning/qtci-windows-10-x86_64/opengl32_x86.ps1 +++ /dev/null @@ -1,52 +0,0 @@ -############################################################################# -## -## Copyright (C) 2017 The Qt Company Ltd. -## Contact: http://www.qt.io/licensing/ -## -## This file is part of the provisioning scripts of the Qt Toolkit. -## -## $QT_BEGIN_LICENSE:LGPL21$ -## Commercial License Usage -## Licensees holding valid commercial Qt licenses may use this file in -## accordance with the commercial license agreement provided with the -## Software or, alternatively, in accordance with the terms contained in -## a written agreement between you and The Qt Company. For licensing terms -## and conditions see http://www.qt.io/terms-conditions. For further -## information use the contact form at http://www.qt.io/contact-us. -## -## GNU Lesser General Public License Usage -## Alternatively, this file may be used under the terms of the GNU Lesser -## General Public License version 2.1 or version 3 as published by the Free -## Software Foundation and appearing in the file LICENSE.LGPLv21 and -## LICENSE.LGPLv3 included in the packaging of this file. Please review the -## following information to ensure the GNU Lesser General Public License -## requirements will be met: https://www.gnu.org/licenses/lgpl.html and -## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -## -## As a special exception, The Qt Company gives you certain additional -## rights. These rights are described in The Qt Company LGPL Exception -## version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -## -## $QT_END_LICENSE$ -## -############################################################################# - -. "$PSScriptRoot\..\common\helpers.ps1" - -$version = "11_2_2" -$openglPackage = "C:\Windows\SysWOW64\opengl32.dll" - -$openglUrl = "\\ci-files01-hki.intra.qt.io\provisioning\mesa3d\windows\32bit\opengl32.dll" -$openglSha1 = "690730f973aa39bd80648e026248394fde07a753" - -echo "Take ownership of existing opengl32.dll from SysWOW64" -takeown /f $openglPackage -icacls $openglPackage /grant Administrators:F -echo "Remove existing opengl32.dll from SysWOW64" -Remove-Item -Recurse -Force $openglPackage -echo "Add new opengl32.dll to SysWOW64" -Invoke-WebRequest -UseBasicParsing $openglUrl -OutFile $openglPackage -Verify-Checksum $openglPackage $openglSha1 - -# Store version information to ~/versions.txt -echo "OpenGL x86 = $version" >> ~/versions.txt -- cgit v1.2.3