Version 6.1.4.1, tag libreoffice-6.1.4.1
[LibreOffice.git] / scp2 / source / extensions / module_extensions.scp
blob6db143fce8bce21ed51b5e0d019e7e545da74757
1 /*
2  * This file is part of the LibreOffice project.
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  *
8  * This file incorporates work covered by the following license notice:
9  *
10  *   Licensed to the Apache Software Foundation (ASF) under one or more
11  *   contributor license agreements. See the NOTICE file distributed
12  *   with this work for additional information regarding copyright
13  *   ownership. The ASF licenses this file to you under the Apache
14  *   License, Version 2.0 (the "License"); you may not use this file
15  *   except in compliance with the License. You may obtain a copy of
16  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
17  */
19 #include "macros.inc"
22 Module gid_Module_Optional_Extensions
23     MOD_NAME_DESC(MODULE_OPTIONAL_EXTENSIONS);
24     ParentID = gid_Module_Optional;
25     Files = ( );
26     Default = YES;
27     Styles = ( );
28 End
30 /* *** Additional Extensions *** */
32 #ifdef WITH_EXTENSION_INTEGRATION
34 /* ** MediaWiki Publisher** */
36 #ifndef WITHOUT_EXTENSION_MEDIAWIKI
37 Module gid_Module_Optional_Extensions_MEDIAWIKI
38     PackageInfo = "packinfo_extensions.txt";
39     MOD_NAME_DESC(MODULE_OPTIONAL_EXTENSIONS_MEDIAWIKI);
40     ParentID = gid_Module_Optional_Extensions;
41     Files = (
42         gid_File_Oxt_MediaWiki );
43     Default = YES;
44     Styles = ( );
45 End
46 #endif
48 /* ** Numbertext ** */
50 #ifdef WITH_EXTENSION_NUMBERTEXT
52 #include "AutoInstall/extensions_numbertext"
54 Module gid_Module_Optional_Extensions_NumberText
55     PackageInfo = "packinfo_extensions.txt";
56     MOD_NAME_DESC(MODULE_OPTIONAL_EXTENSIONS_NUMBERTEXT);
57     ParentID = gid_Module_Optional_Extensions;
58     Files = (auto_extensions_numbertext_ALL);
59     Default = YES;
60     Styles = ( );
61 End
62 #endif
64 /* ** ConvertTextToNumber ** */
66 #ifdef WITH_EXTENSION_CT2N
68 #include "AutoInstall/extensions_ct2n"
70 Module gid_Module_Optional_Extensions_CT2N
71     PackageInfo = "packinfo_extensions.txt";
72     MOD_NAME_DESC(MODULE_OPTIONAL_EXTENSIONS_CT2N);
73     ParentID = gid_Module_Optional_Extensions;
74     Files = (auto_extensions_ct2n_ALL);
75     Default = YES;
76     Styles = ( );
77 End
78 #endif
80 /* ** NLPSolver ** */
82 #ifdef WITH_EXTENSION_NLPSOLVER
83 Module gid_Module_Optional_Extensions_NLPSolver
84     PackageInfo = "packinfo_extensions.txt";
85     MOD_NAME_DESC(MODULE_OPTIONAL_EXTENSIONS_NLPSOLVER);
86     ParentID = gid_Module_Optional_Extensions;
87     Files = (
88         gid_File_Oxt_NLPSolver );
89     Default = YES;
90     Styles = ( );
91 End
92 #endif
94 /* ** LanguageTool ** */
96 #ifdef WITH_EXTENSION_LANGUAGETOOL
97 Module gid_Module_Optional_Extensions_LanguageTool
98  PackageInfo = "packinfo_extensions.txt";
99  MOD_NAME_DESC(MODULE_OPTIONAL_EXTENSIONS_LANGUAGETOOL);
100  ParentID = gid_Module_Optional_Extensions;
101  Files = (
102  gid_File_Oxt_LanguageTool );
103  Default = YES;
104  Styles = ( );
106 #endif
108 /* ** MySQL Connector ** */
110 #ifdef WITH_EXTENSION_MARIADBC
111 Module gid_Module_Optional_Extensions_MySQLConnector
112  PackageInfo = "packinfo_extensions.txt";
113  MOD_NAME_DESC(MODULE_OPTIONAL_EXTENSIONS_MARIADBC);
114  ParentID = gid_Module_Optional_Extensions;
115  Files = (
116  gid_File_Oxt_MySQLConnector );
117  Default = YES;
118  Styles = ( );
120 #endif
122 /* ** Script provider for BeanShell ** */
124 #if defined ENABLE_JAVA && !defined WITHOUT_SCRIPTING_BEANSHELL
126 #include "AutoInstall/extensions_bsh"
128 Module gid_Module_Optional_Extensions_Script_Provider_For_BS
129     PackageInfo = "packinfo_extensions.txt";
130     MOD_NAME_DESC(MODULE_OPTIONAL_EXTENSIONS_SCRIPT_PROVIDER_FOR_BEANSHELL);
131     ParentID = gid_Module_Optional_Extensions;
132     Files = (auto_extensions_bsh_ALL,
133         gid_File_Rdb_Scriptproviderforbeanshell );
134     Default = YES;
135     Styles = ( );
138 #endif
140 /* ** Script provider for JavaScript ** */
142 #if defined ENABLE_JAVA && !defined WITHOUT_SCRIPTING_JAVASCRIPT
144 #include "AutoInstall/extensions_rhino"
146 Module gid_Module_Optional_Extensions_Script_Provider_For_JS
147     PackageInfo = "packinfo_extensions.txt";
148     MOD_NAME_DESC(MODULE_OPTIONAL_EXTENSIONS_SCRIPT_PROVIDER_FOR_JAVASCRIPT);
149     ParentID = gid_Module_Optional_Extensions;
150     Files = (auto_extensions_rhino_ALL,
151         gid_File_Rdb_Scriptproviderforjavascript );
152     Default = YES;
153     Styles = ( );
156 #endif
158 #endif