crashtesting: assert on reimport of docx export of ooo102874-2.doc
[LibreOffice.git] / config_host / config_options.h.in
blob7339d48a47e5d13e1c97c6f9547c6c1147d09eee
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_PCH 0
14 #define ENABLE_RUNTIME_OPTIMIZATIONS 0
16 // Used to turn off visibility for some classes/symbols when linking with --enable-mergelibs
18 #if ENABLE_MERGELIBS
19 #define UNLESS_MERGELIBS(x)
20 #else
21 #define UNLESS_MERGELIBS(x) x
22 #endif
23 #if ENABLE_MERGELIBS
24 #define IF_MERGELIBS(x) x
25 #else
26 #define IF_MERGELIBS(x)
27 #endif
29 // Used to turn off visibility for some classes/symbols when linking with --enable-mergelibs=more
31 #if ENABLE_MERGELIBS_MORE
32 #define UNLESS_MERGELIBS_MORE(x)
33 #else
34 #define UNLESS_MERGELIBS_MORE(x) x
35 #endif
36 #if ENABLE_MERGELIBS_MORE
37 #define IF_MERGELIBS_MORE(x) x
38 #else
39 #define IF_MERGELIBS_MORE(x)
40 #endif
42 #endif