26c142ca5f
For Windows, superseded by Windows Installer patching (i.e., creating .msp files), which is something completely different. (And quite hard to get working... but still a saner approach, I think.) For Linux, many distros use delta RPMs or similar, so no home-grown LO-specific patching mechanism is needed. Remove the -patch and -patchinc command-line options to make_installer.pl and all code that was invoked only when using those. Remove the PATCH and PATCH_ONLY flags in scp2. Remove the patchmsi.dll Windows Installer custom action. Change-Id: I09e949e601a969f88eff60067faa2352f4f89537 Reviewed-on: https://gerrit.libreoffice.org/1605 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Miklos Vajna <vmiklos@suse.cz>
56 lines
1.7 KiB
Text
56 lines
1.7 KiB
Text
/*************************************************************************
|
|
*
|
|
* 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.
|
|
*
|
|
************************************************************************/
|
|
|
|
#include "macros.inc"
|
|
|
|
#ifdef WITH_ACTIVEX_COMPONENT
|
|
|
|
File gid_File_Lib_Soactivex
|
|
LIB_FILE_BODY;
|
|
Styles = (PACKED);
|
|
Dir = SCP2_OOO_BIN_DIR;
|
|
Name = "so_activex.dll";
|
|
End
|
|
|
|
#ifdef BUILD_X64
|
|
File gid_File_Lib_Soactivex64
|
|
LIB_FILE_BODY;
|
|
Styles = (PACKED);
|
|
Dir = SCP2_OOO_BIN_DIR;
|
|
Name = "so_activex_x64.dll";
|
|
ComponentCondition = "VersionNT64";
|
|
End
|
|
#endif
|
|
|
|
File gid_File_Lib_Regactivex_Msi
|
|
LIB_FILE_BODY;
|
|
Styles = (PACKED, BINARYTABLE, BINARYTABLE_ONLY);
|
|
Dir = SCP2_OOO_BIN_DIR;
|
|
Name = "regactivex.dll";
|
|
End
|
|
|
|
#endif // WITH_ACTIVEX_COMPONENT
|