~singpolyma/biboumi

53e6b1da69199f54303e4cb2b00db3205f62ce6e — Florent Le Coz 8 years ago 5db0637
Fix the systemd-conditional code

By using SYSTEMD_FOUND instead of SYSTEMDDAEMON_FOUND, where I forgot to
rename it…
3 files changed, 9 insertions(+), 9 deletions(-)

M CMakeLists.txt
M src/logger/logger.hpp
M src/xmpp/xmpp_component.cpp
M CMakeLists.txt => CMakeLists.txt +4 -4
@@ 82,8 82,8 @@ if(LIBIDN_FOUND)
  include_directories(${LIBIDN_INCLUDE_DIRS})
endif()

if(SYSTEMDDAEMON_FOUND)
  include_directories(${SYSTEMDDAEMON_INCLUDE_DIRS})
if(SYSTEMD_FOUND)
  include_directories(${SYSTEMD_INCLUDE_DIRS})
endif()

if(BOTAN_FOUND)


@@ 198,8 198,8 @@ target_link_libraries(${PROJECT_NAME}
  bridge
  utils
  config)
if(SYSTEMDDAEMON_FOUND)
  target_link_libraries(xmpp ${SYSTEMDDAEMON_LIBRARIES})
if(SYSTEMD_FOUND)
  target_link_libraries(xmpp ${SYSTEMD_LIBRARIES})
endif()



M src/logger/logger.hpp => src/logger/logger.hpp +1 -1
@@ 19,7 19,7 @@

#include "config.h"

#ifdef SYSTEMDDAEMON_FOUND
#ifdef SYSTEMD_FOUND
# include <systemd/sd-daemon.h>
#else
# define SD_DEBUG    "[DEBUG]: "

M src/xmpp/xmpp_component.cpp => src/xmpp/xmpp_component.cpp +4 -4
@@ 17,7 17,7 @@

#include <uuid.h>

#ifdef SYSTEMDDAEMON_FOUND
#ifdef SYSTEMD_FOUND
# include <systemd/sd-daemon.h>
#endif



@@ 89,7 89,7 @@ void XmppComponent::on_connection_failed(const std::string& reason)
{
  this->first_connection_try = false;
  log_error("Failed to connect to the XMPP server: " << reason);
#ifdef SYSTEMDDAEMON_FOUND
#ifdef SYSTEMD_FOUND
  sd_notifyf(0, "STATUS=Failed to connect to the XMPP server: %s", reason.data());
#endif
}


@@ 279,7 279,7 @@ void XmppComponent::handle_handshake(const Stanza& stanza)
  this->authenticated = true;
  this->ever_auth = true;
  log_info("Authenticated with the XMPP server");
#ifdef SYSTEMDDAEMON_FOUND
#ifdef SYSTEMD_FOUND
  sd_notify(0, "READY=1");
  // Install an event that sends a keepalive to systemd.  If biboumi crashes
  // or hangs for too long, systemd will restart it.


@@ 626,7 626,7 @@ void XmppComponent::handle_error(const Stanza& stanza)
  if (text)
    error_message = text->get_inner();
  log_error("Stream error received from the XMPP server: " << error_message);
#ifdef SYSTEMDDAEMON_FOUND
#ifdef SYSTEMD_FOUND
  if (!this->ever_auth)
    sd_notifyf(0, "STATUS=Failed to authenticate to the XMPP server: %s", error_message.data());
#endif