diff options
author | Michael Stahl <mstahl@redhat.com> | 2014-08-02 20:26:26 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2014-08-02 22:23:49 +0200 |
commit | 4bab1f2dea44e54b72096eba0f5bc7a0a71c5589 (patch) | |
tree | 392f7027d7b5b6649e15af4b79e8baba9f1fda85 /scp2/source | |
parent | 544fa45eadf9656f9cf55c0880eff6f5f88921a3 (diff) |
scp2: move activex libs to AutoInstall
Change-Id: I08fac26859d97e3d7a60d3ba443c2d2ca039789b
Diffstat (limited to 'scp2/source')
-rw-r--r-- | scp2/source/activex/file_activex.scp | 36 | ||||
-rw-r--r-- | scp2/source/activex/module_activex.scp | 9 |
2 files changed, 6 insertions, 39 deletions
diff --git a/scp2/source/activex/file_activex.scp b/scp2/source/activex/file_activex.scp deleted file mode 100644 index e6864b83e6b9..000000000000 --- a/scp2/source/activex/file_activex.scp +++ /dev/null @@ -1,36 +0,0 @@ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#include "macros.inc" - -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 diff --git a/scp2/source/activex/module_activex.scp b/scp2/source/activex/module_activex.scp index e56ced78b120..fbcbaba58ff6 100644 --- a/scp2/source/activex/module_activex.scp +++ b/scp2/source/activex/module_activex.scp @@ -17,7 +17,10 @@ */ #include "macros.inc" + #include "AutoInstall/activexbinarytable" +#include "AutoInstall/activex" +#include "AutoInstall/activexwin64" Module gid_Module_Optional_Activexcontrol PackageInfo = "packinfo_office.txt"; @@ -26,8 +29,8 @@ Module gid_Module_Optional_Activexcontrol Default = NO; Minimal = NO; ParentID = gid_Module_Optional; - Files = (auto_activexbinarytable_ALL - gid_File_Lib_Soactivex, - gid_File_Lib_Soactivex64, + Files = (auto_activexbinarytable_ALL, + auto_activex_ALL, + auto_activexwin64_ALL, gid_File_Lib_Regpatchactivex_Msi); End |