Fix GNU C++ version check
[LibreOffice.git] / scp2 / source / extensions / module_extensions.scp
blob7f8061f99857c5cbb353f38f48aed965286c9ae7
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 /* ** NLPSolver ** */
66 #ifdef WITH_EXTENSION_NLPSOLVER
67 Module gid_Module_Optional_Extensions_NLPSolver
68     PackageInfo = "packinfo_extensions.txt";
69     MOD_NAME_DESC(MODULE_OPTIONAL_EXTENSIONS_NLPSOLVER);
70     ParentID = gid_Module_Optional_Extensions;
71     Files = (
72         gid_File_Oxt_NLPSolver );
73     Default = YES;
74     Styles = ( );
75 End
76 #endif
78 /* ** Script provider for BeanShell ** */
80 #if defined ENABLE_JAVA && !defined WITHOUT_SCRIPTING_BEANSHELL
82 #include "AutoInstall/extensions_bsh"
84 Module gid_Module_Optional_Extensions_Script_Provider_For_BS
85     PackageInfo = "packinfo_extensions.txt";
86     MOD_NAME_DESC(MODULE_OPTIONAL_EXTENSIONS_SCRIPT_PROVIDER_FOR_BEANSHELL);
87     ParentID = gid_Module_Optional_Extensions;
88     Files = (auto_extensions_bsh_ALL,
89         gid_File_Rdb_Scriptproviderforbeanshell );
90     Default = YES;
91     Styles = ( );
92 End
94 #endif
96 /* ** Script provider for JavaScript ** */
98 #if defined ENABLE_JAVA && !defined WITHOUT_SCRIPTING_JAVASCRIPT
100 #include "AutoInstall/extensions_rhino"
102 Module gid_Module_Optional_Extensions_Script_Provider_For_JS
103     PackageInfo = "packinfo_extensions.txt";
104     MOD_NAME_DESC(MODULE_OPTIONAL_EXTENSIONS_SCRIPT_PROVIDER_FOR_JAVASCRIPT);
105     ParentID = gid_Module_Optional_Extensions;
106     Files = (auto_extensions_rhino_ALL,
107         gid_File_Rdb_Scriptproviderforjavascript );
108     Default = YES;
109     Styles = ( );
112 #endif
114 #endif