diff --git a/samba-use-libsystemd.patch b/samba-use-libsystemd.patch index 2fe68d8..114b771 100644 --- a/samba-use-libsystemd.patch +++ b/samba-use-libsystemd.patch @@ -7,7 +7,7 @@ index 4622971907..04d77da529 100644 #include "system/filesys.h" #include "system/locale.h" -#if HAVE_LIBSYSTEMD_DAEMON -+#if HAVE_LIBSYSTEMD_DAEMON || HAVE_LIBSYSTEMD ++#if defined(HAVE_LIBSYSTEMD_DAEMON) || defined(HAVE_LIBSYSTEMD) #include #endif #include "lib/util/close_low_fd.h" @@ -16,7 +16,7 @@ index 4622971907..04d77da529 100644 newpid = fork(); if (newpid) { -#if HAVE_LIBSYSTEMD_DAEMON -+#if HAVE_LIBSYSTEMD_DAEMON || HAVE_LIBSYSTEMD ++#if defined(HAVE_LIBSYSTEMD_DAEMON) || defined(HAVE_LIBSYSTEMD) sd_notifyf(0, "READY=0\nSTATUS=Starting process...\nMAINPID=%lu", (unsigned long) newpid); #endif /* HAVE_LIBSYSTEMD_DAEMON */ _exit(0); @@ -25,7 +25,7 @@ index 4622971907..04d77da529 100644 _PUBLIC_ void exit_daemon(const char *msg, int error) { -#ifdef HAVE_LIBSYSTEMD_DAEMON -+#if HAVE_LIBSYSTEMD_DAEMON || HAVE_LIBSYSTEMD ++#if defined(HAVE_LIBSYSTEMD_DAEMON) || defined(HAVE_LIBSYSTEMD) if (msg == NULL) { msg = strerror(error); } @@ -34,7 +34,7 @@ index 4622971907..04d77da529 100644 name = "Samba"; } -#ifdef HAVE_LIBSYSTEMD_DAEMON -+#if HAVE_LIBSYSTEMD_DAEMON || HAVE_LIBSYSTEMD ++#if defined(HAVE_LIBSYSTEMD_DAEMON) || defined(HAVE_LIBSYSTEMD) sd_notifyf(0, "READY=1\nSTATUS=%s: ready to serve connections...", name); #endif DEBUG(0, ("STATUS=daemon '%s' finished starting up and ready to serve " @@ -43,7 +43,7 @@ index 4622971907..04d77da529 100644 name = "Samba"; } -#ifdef HAVE_LIBSYSTEMD_DAEMON -+#if HAVE_LIBSYSTEMD_DAEMON || HAVE_LIBSYSTEMD ++#if defined(HAVE_LIBSYSTEMD_DAEMON) || defined(HAVE_LIBSYSTEMD) sd_notifyf(0, "\nSTATUS=%s: %s", name, msg); #endif DEBUG(0, ("STATUS=daemon '%s' : %s", name, msg));