Bump version to 24.04.3.4
[LibreOffice.git] / config_host / config_options.h.in
blobabce3417e45ad931dece282c4f23333b857f7ad2
1 /*
2 * General configuration settings for various options.
3 */
5 #ifndef CONFIG_OPTIONS_H
6 #define CONFIG_OPTIONS_H
8 #define ENABLE_MERGELIBS 0
10 #define ENABLE_MERGELIBS_MORE 0
12 #define ENABLE_RUNTIME_OPTIMIZATIONS 0
14 // Used to turn off visibility for some classes/symbols when linking with --enable-mergelibs
16 #if ENABLE_MERGELIBS
17 #define UNLESS_MERGELIBS(x)
18 #else
19 #define UNLESS_MERGELIBS(x) x
20 #endif
21 #if ENABLE_MERGELIBS
22 #define IF_MERGELIBS(x) x
23 #else
24 #define IF_MERGELIBS(x)
25 #endif
28 #endif