fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / scp2 / source / base / postgresqlsdbc.scp
blob23bbd44848184cf4389a2e5b412d8e827762d410
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  */
10 #include "macros.inc"
12 #include "AutoInstall/postgresqlsdbc"
14 #if defined WITH_POSTGRESQL_SDBC
16 Module gid_Module_Optional_PostgresqlSdbc
17     PackageInfo = "packinfo_office.txt";
18     MOD_NAME_DESC(MODULE_OPTIONAL_POSTGRESQLSDBC);
19     ParentID = gid_Module_Prg_Base_Bin;
20     Files = (auto_postgresqlsdbc_ALL,
21              gid_File_PostgresqlSdbc_Ini,
22              gid_File_PostgresqlSdbc_Rdb,
23              gid_File_PostgresqlSdbc_Xcd);
24     Default = YES;
25     Styles = ();
26 End
28 File gid_File_PostgresqlSdbc_Ini
29     TXT_FILE_BODY;
30     Dir = GID_BRAND_DIR_ETC;
31     Name = "postgresql-sdbc.ini";
32     Styles = (PACKED);
33 End
35 File gid_File_PostgresqlSdbc_Rdb
36     TXT_FILE_BODY;
37     Dir = gid_Brand_Dir_Program_Services;
38     Name = "postgresql-sdbc.rdb";
39     Styles = (PACKED);
40 End
42 File gid_File_PostgresqlSdbc_Xcd
43     TXT_FILE_BODY;
44     Dir = gid_Brand_Dir_Share_Registry;
45     Name = "postgresql.xcd";
46     Styles = (PACKED);
47 End
49 #endif
51 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */