chiark / gitweb /
Fix elogind debug mode:
authorSven Eden <yamakuzure@gmx.net>
Mon, 18 Jun 2018 15:33:08 +0000 (17:33 +0200)
committerSven Eden <yamakuzure@gmx.net>
Fri, 29 Jun 2018 05:12:51 +0000 (07:12 +0200)
commitd2c90687368fb1b6b46e1d776845d6ad3c59c4a2
treef4f950828bf1c695c9543490715119d092329474
parent9e89768d6cfef494067b82871b4d9b1d2bac2d8e
Fix elogind debug mode:

When switched from autotools to meson, config.h changed fundamentally.

Although enabled values are still
  #define HAVE_FOO 1
the disabled values are nolonger undef, but now
  #define HAVE_FOO 0

Therefore all instances of
  #ifdef ENABLE_DEBUG_ELOGIND
have been changed to
  #if ENABLE_DEBUG_ELOGIND
src/basic/log.h
src/login/eloginctl.c
src/login/elogind.c
src/login/logind.c