diff options
author | Joe Orton <jorton@apache.org> | 2020-03-12 17:16:28 +0100 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2020-03-12 17:16:28 +0100 |
commit | 6db29cc79e719426b79282d3f825eafc2d21ec1c (patch) | |
tree | cae57c28931624563f0cba0169afdce27aed583d /acinclude.m4 | |
parent | should be 2.5.x in trunk (diff) | |
download | apache2-6db29cc79e719426b79282d3f825eafc2d21ec1c.tar.xz apache2-6db29cc79e719426b79282d3f825eafc2d21ec1c.zip |
* acinclude.m4 (APACHE_CHECK_SYSTEMD): Remove redundant test.
Submitted by: Pascal Terjan <pterjan linuxfr.org>
PR: 57631
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1875128 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 4890ae91e9..c8aab9ee62 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -827,7 +827,7 @@ case $host in fi if test -n "$SYSTEMD_LIBS"; then AC_CHECK_HEADERS(systemd/sd-daemon.h) - if test "${ac_cv_header_systemd_sd_daemon_h}" = "no" || test -z "${SYSTEMD_LIBS}"; then + if test "${ac_cv_header_systemd_sd_daemon_h}" = "no"; then AC_MSG_WARN([Your system does not support systemd.]) else APR_ADDTO(HTTPD_LIBS, [$SYSTEMD_LIBS]) |