These are configuration files for various features as detected by configure. Include only those files you need (in order to reduce rebuilds when a setting changes). Settings here are only C/C++ #define directives, so they apply only to C/C++ source, not to Makefiles. Adding a new setting: ===================== - do AC_DEFINE(HAVE_FOO) in configure.ac when a setting should be set - choose the proper config_host/config_XXX.h file to use - if it is a global setting (such as availability of a compiler feature), use config_host/config_global.h - otherwise check if there is a matching config_host/config_XXX.h file - if none matches, add a new one: - add config_host/config_XXX.h.in here, with just #ifndef include guard - add AC_CONFIG_HEADERS([config_host/config_XXX.h]) next to the others in configure.ac - add #define HAVE_FOO 0 to the config_host/config_XXX.h , possibly with a comment (do not use #undef HAVE_FOO, unless the setting has more values than on/off) - add #include before any #if HAVE_FOO in a source file - make sure you use #if HAVE_FOO for on/off settings, do not use #ifdef ption> LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/sd
AgeCommit message (Expand)Author
2014-10-20coverity#704010 Unchecked return valueCaolán McNamara
2014-10-20fdo#84938: replace TIB_ constants with enumNoel Grandin
2014-10-19-Werror=shadowMiklos Vajna
2014-10-17Consistency around SdrAngleItem in svx/sxciaitm.hxxStephan Bergmann
2014-10-17There is no ExportCGMStephan Bergmann
2014-10-17Pass args by const &Stephan Bergmann
2014-10-16fdo#84854 it seems long is not enough on 32 bitDavid Tardon
2014-10-16ensure UserData dtors are done while SolarMutex is lockedCaolán McNamara
2014-10-15Restore my pretty slide highlightingCaolán McNamara
2014-10-15More -Werror,-Wunused-private-fieldStephan Bergmann
2014-10-15fdo#84938: replace SYMBOL_TYPE constants with enumNoel Grandin
2014-10-15nDrehWink -> nRotationAngleMiklos Vajna
2014-10-14Resolves: fdo#84887 TabBar::ImplShowPage crashCaolán McNamara
2014-10-14add cgm loading testCaolán McNamara