summaryrefslogtreecommitdiff
path: root/download
diff options
context:
space:
mode:
authorPeter Foley <pefoley2@verizon.net>2012-12-03 18:11:54 -0500
committerPeter Foley <pefoley2@verizon.net>2012-12-05 19:48:44 -0500
commitf9a687719960a6636186cbd2db917ad660139a11 (patch)
tree9a03a0d69a6326ec7b7ad986ba7fa50ecff6c4c5 /download
parent3be458578445b82c718b1a8512d16d706fc2329b (diff)
kill oowintool
Change-Id: Ifb0c8a34ecb7b77a92fb67ca947b4ed46f51fd9a
Diffstat (limited to 'download')
-rwxr-xr-xdownload81
1 files changed, 0 insertions, 81 deletions
diff --git a/download b/download
deleted file mode 100755
index 985443c6aa1a..000000000000
--- a/download
+++ /dev/null
@@ -1,81 +0,0 @@
-#!/usr/bin/env bash
-#*************************************************************************
-#
-# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-#
-# Copyright 2000, 2010 Oracle and/or its affiliates.
-#
-# OpenOffice.org - a multi-platform office productivity suite
-#
-# This file is part of OpenOffice.org.
-#
-# OpenOffice.org is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Lesser General Public License version 3
-# only, as published by the Free Software Foundation.
-#
-# OpenOffice.org is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU Lesser General Public License version 3 for more details
-# (a copy is included in the LICENSE file that accompanied this code).
-#
-# You should have received a copy of the GNU Lesser General Public License
-# version 3 along with OpenOffice.org. If not, see
-# <http://www.openoffice.org/license.html>
-# for a copy of the LGPLv3 License.
-#
-#*************************************************************************
-
-set -o pipefail
-
-# environment setup yet?
-if [ -z "$TARFILE_LOCATION" ]; then
- . ./bin/get_config_variables TARFILE_LOCATION COM CPUNAME VCVER DBGHELP_DLL
-fi
-
-if [ "$COM" = "MSC" -a "$CPUNAME" = "INTEL" ]; then
-
- # Windows builds need dbghelp.dll in external/dbghelp/
- if [ ! -f ./external/dbghelp/dbghelp.dll -a -f $TARFILE_LOCATION/$DBGHELP_DLL ]; then
- cp $TARFILE_LOCATION/$DBGHELP_DLL ./external/dbghelp/dbghelp.dll
- fi
- if [ ! -f ./external/dbghelp/dbghelp.dll ]; then
- echo "dbghelp.dll is missing in external/dbghelp/."
- echo "Get it from the Microsoft site and put it there."
- echo "(Note: Microsoft seems to enjoy changing the exact location of this file."
- echo "You may have to search Microsoft's website.) Last time it was seen at:"
- echo "<http://www.microsoft.com/downloads/release.asp?releaseid=30682>."
- exit 1
- fi
-fi
-
-if [ "$COM" = "MSC" ]; then
- if [ "$CPUNAME" = "INTEL" ]; then
- ver=""
- else
- ver="-64"
- fi
- # use oowintool to copy CRT dlls and manifest
- if ! ./oowintool --msvc-copy-dlls"$ver" ./external/msvcp ; then
- echo "oowintool failed to copy CRT"
- exit 1
- fi
-
- # use oowintool to copy VC redist merge modules
- if ! ./oowintool --msvc-copy-msms"$ver" ./external/msm"$VCVER" ; then
- echo "oowintool failed to copy merge modules"
- exit 1
- fi
- if [ "$CPUNAME" = "INTEL" ]; then
- if ! ./oowintool --msvc-copy-msms-64 ./external/msm"$VCVER" ; then
- echo "WARNING: oowintool failed to copy x64 merge modules, installation will lack the 64-bit Explorer extension"
- fi
- fi
-fi
-
-# Local Variables:
-# tab-width: 4
-# indent-tabs-mode: nil
-# End:
-
-# vim:set shiftwidth=4 softtabstop=4 expandtab: