2 * General configuration settings for various options.
5 #ifndef CONFIG_OPTIONS_H
6 #define CONFIG_OPTIONS_H
8 #define ENABLE_MERGELIBS 0
10 #define ENABLE_MERGELIBS_MORE 0
14 #define ENABLE_RUNTIME_OPTIMIZATIONS 0
16 // Used to turn off visibility for some classes/symbols when linking with --enable-mergelibs
19 #define UNLESS_MERGELIBS(x)
21 #define UNLESS_MERGELIBS(x) x
24 #define IF_MERGELIBS(x) x
26 #define IF_MERGELIBS(x)
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)
34 #define UNLESS_MERGELIBS_MORE(x) x
36 #if ENABLE_MERGELIBS_MORE
37 #define IF_MERGELIBS_MORE(x) x
39 #define IF_MERGELIBS_MORE(x)