summaryrefslogtreecommitdiff
path: root/config_host/config_version.h.in
blob: cc9cd98c2e5adb8c357a72e469a0068c10e25393 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
Version settings
  version 4.0.0.1 is Major.Minor.Micro.Patch
*/

#ifndef CONFIG_VERSION_H
#define CONFIG_VERSION_H

#define LIBO_VERSION_STRINGIFY_inner(s) #s
#define LIBO_VERSION_STRINGIFY(s) LIBO_VERSION_STRINGIFY_inner(s)

#undef LIBO_VERSION_MAJOR
#undef LIBO_VERSION_MINOR
#undef LIBO_VERSION_MICRO
#undef LIBO_VERSION_PATCH
#undef LIBO_THIS_YEAR

#define LIBO_VERSION_DOTTED \
    LIBO_VERSION_STRINGIFY(LIBO_VERSION_MAJOR) "." \
    LIBO_VERSION_STRINGIFY(LIBO_VERSION_MINOR) "." \
    LIBO_VERSION_STRINGIFY(LIBO_VERSION_MICRO) "." \
    LIBO_VERSION_STRINGIFY(LIBO_VERSION_PATCH)

#define LIBO_VERSION_ENCODED_IN_32BITS \
    ((LIBO_VERSION_MAJOR << 24) | (LIBO_VERSION_MINOR << 16) | (LIBO_VERSION_MICRO << 8) | LIBO_VERSION_PATCH)

#endif
tle='2017-12-15 09:02:17 +0100'>2017-12-15clang-format: restore lost warning on touching formatted file without checkMiklos Vajna 2017-12-13clang-format: ignore not staged hunksMiklos Vajna 2017-11-21git-hooks: fix pre-commit in submodulesMiklos Vajna 2017-11-20clang-format: enforce coding style via JenkinsMiklos Vajna 2017-11-16git-hooks: mention download link for clang-format when warning about itMiklos Vajna 2017-11-16Warn when commit touches new files, but no suitable clang-format is foundStephan Bergmann 2017-11-13First look for clang-format in CLANG_FORMT env varStephan Bergmann 2017-11-13clang-format: standardize on 5.0.0Miklos Vajna 2017-11-03Enforce coding style with clang-format for new codeMiklos Vajna 2017-10-30git-hooks: don't complain about large .ui filesMichael Stahl 2017-09-20pre-commit-hook: Also check xsl files for whitespace and tabsSamuel Mehrbrodt 2017-09-11insist in a domain in .ui filesCaolán McNamara 2017-09-11disallow .ui translatable entries without context at checkinCaolán McNamara 2017-03-24git pre-commit hook: Also check swift filesSamuel Mehrbrodt 2016-12-08tdf#102784 - Enhance git pre-commit hookMarina Latini 2015-09-08git-hooks: Info how to install them manually.Jan Holesovsky 2015-06-13Catch funny line-ends in pre-commit hook.Thorsten Behrens 2015-02-13git-hooks: post-merge script does not need /bin/bashThomas Klausner 2015-02-13git-hooks: recognize multiple bug idsMiklos Vajna 2015-02-12git hooks: reject suspicious fdo referencesMiklos Vajna 2014-05-16git pre-commit hook: block large filesMiklos Vajna