Update git submodules
[LibreOffice.git] / config_host / config_options.h.in
blob37f044f1b49324c1c4686baf439057f179a95d4a
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_RUNTIME_OPTIMIZATIONS 0
12 // Used to turn off visibility for some classes/symbols when linking with --enable-mergelibs
14 #if ENABLE_MERGELIBS
15 #define UNLESS_MERGELIBS(x)
16 #else
17 #define UNLESS_MERGELIBS(x) x
18 #endif
19 #if ENABLE_MERGELIBS
20 #define IF_MERGELIBS(x) x
21 #else
22 #define IF_MERGELIBS(x)
23 #endif
26 #endif