Bump for 4.0-15
[LibreOffice.git] / download
bloba04d1f4a88a3fa23cb9682cd03784536537124c9
1 #!/usr/bin/env bash
2 #*************************************************************************
4 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 #
6 # Copyright 2000, 2010 Oracle and/or its affiliates.
8 # OpenOffice.org - a multi-platform office productivity suite
10 # This file is part of OpenOffice.org.
12 # OpenOffice.org is free software: you can redistribute it and/or modify
13 # it under the terms of the GNU Lesser General Public License version 3
14 # only, as published by the Free Software Foundation.
16 # OpenOffice.org is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU Lesser General Public License version 3 for more details
20 # (a copy is included in the LICENSE file that accompanied this code).
22 # You should have received a copy of the GNU Lesser General Public License
23 # version 3 along with OpenOffice.org. If not, see
24 # <http://www.openoffice.org/license.html>
25 # for a copy of the LGPLv3 License.
27 #*************************************************************************
29 set -o pipefail
31 # environment setup yet?
32 if [ -z "$TARFILE_LOCATION" ]; then
33 . ./bin/get_config_variables TARFILE_LOCATION COM CPUNAME VCVER DBGHELP_DLL
36 if [ "$COM" = "MSC" -a "$CPUNAME" = "INTEL" ]; then
38 # Windows builds need dbghelp.dll in external/dbghelp/
39 if [ ! -f ./external/dbghelp/dbghelp.dll -a -f $TARFILE_LOCATION/$DBGHELP_DLL ]; then
40 cp $TARFILE_LOCATION/$DBGHELP_DLL ./external/dbghelp/dbghelp.dll
42 if [ ! -f ./external/dbghelp/dbghelp.dll ]; then
43 echo "dbghelp.dll is missing in external/dbghelp/."
44 echo "Get it from the Microsoft site and put it there."
45 echo "(Note: Microsoft seems to enjoy changing the exact location of this file."
46 echo "You may have to search Microsoft's website.) Last time it was seen at:"
47 echo "<http://www.microsoft.com/downloads/release.asp?releaseid=30682>."
48 exit 1
52 if [ "$COM" = "MSC" ]; then
53 # use oowintool to copy CRT dlls and manifest
54 if ! ./oowintool --msvc-copy-dlls-64 ./external/msvcp ; then
55 echo "oowintool failed to copy 64-bit CRT"
56 exit 1
59 # use oowintool to copy VC redist merge modules
60 if ! ./oowintool --msvc-copy-msms"$ver" ./external/msm"$VCVER" ; then
61 echo "oowintool failed to copy merge modules"
62 exit 1
66 # Local Variables:
67 # tab-width: 4
68 # indent-tabs-mode: nil
69 # End:
71 # vim:set shiftwidth=4 softtabstop=4 expandtab: