summaryrefslogtreecommitdiff
path: root/scp2/source/stdlibs/module_stdlibs.scp
blob: 9bb86a7e9c95f3e3bf5fb9969f426f789309f2f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * 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/.
 */

#include "macros.inc"

Module gid_Module_Optional_Stdlibs
    ParentID = gid_Module_Root;
    Default = NO;
    PackageInfo = "packinfo_ure.txt";
    MOD_NAME_DESC(MODULE_OPTIONAL_STDLIBS);
    Styles = ();
    Files = (
#if defined _gcc3 && !(defined FREEBSD || defined NETBSD || defined OPENBSD \
	|| defined MACOSX || defined SYSTEM_STDLIBS || defined(WNT) || defined(DRAGONFLY))
        gid_File_Dl_GccS,
        gid_File_Dl_Stdcpp
#endif
    );
End