Codebase list fcitx-configtool / fresh-snapshots/main config.h.in
fresh-snapshots/main

Tree @fresh-snapshots/main (Download .tar.gz)

config.h.in @fresh-snapshots/mainraw · history · blame

#define VERSION_STRING_FULL "@VERSION_STRING_FULL@"
#define DATADIR "@datadir@"
#define LOCALEDIR "@localedir@"
#define EXEC_PREFIX "@exec_prefix@"
#define PACKAGE "@FCITX4_PACKAGE_NAME@"
#define LIBLOCALEDIR "@liblocaledir@"
#define ISO_CODES_PREFIX "@ISO_CODES_PREFIX@"
#define GETTEXT_PACKAGE "fcitx-configtool"
#define FCITX4_MAJOR_VERSION @FCITX4_MAJOR_VERSION@
#define FCITX4_MINOR_VERSION @FCITX4_MINOR_VERSION@
#define FCITX4_PATCH_VERSION @FCITX4_PATCH_VERSION@

#define FCITX_CHECK_VERSION(major,minor,micro)    \
    (FCITX4_MAJOR_VERSION > (major) || \
     (FCITX4_MAJOR_VERSION == (major) && FCITX4_MINOR_VERSION > (minor)) || \
     (FCITX4_MAJOR_VERSION == (major) && FCITX4_MINOR_VERSION == (minor) && \
      FCITX4_PATCH_VERSION >= (micro)))