fdo#61256 - the Get.*Export methods also create and register styles
[LibreOffice.git] / download
blob985443c6aa1a586a25c0c25e64ecba6e6974cc42
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 if [ "$CPUNAME" = "INTEL" ]; then
54 ver=""
55 else
56 ver="-64"
58 # use oowintool to copy CRT dlls and manifest
59 if ! ./oowintool --msvc-copy-dlls"$ver" ./external/msvcp ; then
60 echo "oowintool failed to copy CRT"
61 exit 1
64 # use oowintool to copy VC redist merge modules
65 if ! ./oowintool --msvc-copy-msms"$ver" ./external/msm"$VCVER" ; then
66 echo "oowintool failed to copy merge modules"
67 exit 1
69 if [ "$CPUNAME" = "INTEL" ]; then
70 if ! ./oowintool --msvc-copy-msms-64 ./external/msm"$VCVER" ; then
71 echo "WARNING: oowintool failed to copy x64 merge modules, installation will lack the 64-bit Explorer extension"
76 # Local Variables:
77 # tab-width: 4
78 # indent-tabs-mode: nil
79 # End:
81 # vim:set shiftwidth=4 softtabstop=4 expandtab: