blob: 13051984f3854bb2645f9851372f5d5cfbdf53a6 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/* Configuration of subfolder names in the installation tree. The
* values of these macros when configured will be strings. The names
* of these macros reflect what the value would be in an "ideal" world
* on Linux, not current reality. (For example LIBO_BIN_FOLDER is
* actually "program" on Linux and most other Unixes.)
*/
#ifndef CONFIG_FOLDERS_H
#define CONFIG_FOLDERS_H
/* where the soffice executable and other end-user-invoked executables are */
#undef LIBO_BIN_FOLDER
/* where the *rc / *.ini file are */
#undef LIBO_ETC_FOLDER
/* where helper executables run by soffice are */
#undef LIBO_LIBEXEC_FOLDER
/* where dynamic libraries loaded directly or programmatically are */
#undef LIBO_LIB_FOLDER
/* where read-only resources are in general */
#undef LIBO_SHARE_FOLDER
/* where help files are */
#undef LIBO_SHARE_HELP_FOLDER
/* where java jars are */
#undef LIBO_SHARE_JAVA_FOLDER
/* the presets folder */
#undef LIBO_SHARE_PRESETS_FOLDER
/* LO's own "resources" */
#undef LIBO_SHARE_RESOURCE_FOLDER
/* LO's "shell" artwork */
#undef LIBO_SHARE_SHELL_FOLDER
/* URE folders */
#undef LIBO_URE_BIN_FOLDER
#undef LIBO_URE_ETC_FOLDER
#undef LIBO_URE_LIB_FOLDER
#undef LIBO_URE_MISC_FOLDER
#undef LIBO_URE_SHARE_JAVA_FOLDER
/* the source root directory of the build */
#undef SRC_ROOT
/* the build directory of the build */
#undef BUILDDIR
#endif
|