Bump version to 6.0-36
[LibreOffice.git] / scp2 / source / extensions / module_extensions.scp
blob7c14cfeda594f8d0168c5f15d2fecd4465b36a0a
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 /* ** Script provider for BeanShell ** */
110 #if defined ENABLE_JAVA && !defined WITHOUT_SCRIPTING_BEANSHELL
112 #include "AutoInstall/extensions_bsh"
114 Module gid_Module_Optional_Extensions_Script_Provider_For_BS
115     PackageInfo = "packinfo_extensions.txt";
116     MOD_NAME_DESC(MODULE_OPTIONAL_EXTENSIONS_SCRIPT_PROVIDER_FOR_BEANSHELL);
117     ParentID = gid_Module_Optional_Extensions;
118     Files = (auto_extensions_bsh_ALL,
119         gid_File_Rdb_Scriptproviderforbeanshell );
120     Default = YES;
121     Styles = ( );
124 #endif
126 /* ** Script provider for JavaScript ** */
128 #if defined ENABLE_JAVA && !defined WITHOUT_SCRIPTING_JAVASCRIPT
130 #include "AutoInstall/extensions_rhino"
132 Module gid_Module_Optional_Extensions_Script_Provider_For_JS
133     PackageInfo = "packinfo_extensions.txt";
134     MOD_NAME_DESC(MODULE_OPTIONAL_EXTENSIONS_SCRIPT_PROVIDER_FOR_JAVASCRIPT);
135     ParentID = gid_Module_Optional_Extensions;
136     Files = (auto_extensions_rhino_ALL,
137         gid_File_Rdb_Scriptproviderforjavascript );
138     Default = YES;
139     Styles = ( );
142 #endif
144 #endif