Merge pull request #2687 from actionless/version-yes-no
chore(common: version): replace unicode symbols to yes/no
This commit is contained in:
commit
75c281e3af
|
@ -50,19 +50,19 @@ eprint_version(void)
|
||||||
(void) luaL_dostring(L, "return require('lgi.version')");
|
(void) luaL_dostring(L, "return require('lgi.version')");
|
||||||
|
|
||||||
#ifdef WITH_DBUS
|
#ifdef WITH_DBUS
|
||||||
const char *has_dbus = "✔";
|
const char *has_dbus = "yes";
|
||||||
#else
|
#else
|
||||||
const char *has_dbus = "✘";
|
const char *has_dbus = "no";
|
||||||
#endif
|
#endif
|
||||||
#ifdef WITH_XCB_ERRORS
|
#ifdef WITH_XCB_ERRORS
|
||||||
const char *has_xcb_errors = "✔";
|
const char *has_xcb_errors = "yes";
|
||||||
#else
|
#else
|
||||||
const char *has_xcb_errors = "✘";
|
const char *has_xcb_errors = "no";
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAS_EXECINFO
|
#ifdef HAS_EXECINFO
|
||||||
const char *has_execinfo = "✔";
|
const char *has_execinfo = "yes";
|
||||||
#else
|
#else
|
||||||
const char *has_execinfo = "✘";
|
const char *has_execinfo = "no";
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
printf("awesome %s (%s)\n"
|
printf("awesome %s (%s)\n"
|
||||||
|
|
Loading…
Reference in New Issue