]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* modules/arch/unix/config5.m4: Don't override enable_systemd, fixing
authorJoe Orton <jorton@apache.org>
Tue, 14 Jan 2020 10:29:19 +0000 (10:29 +0000)
committerJoe Orton <jorton@apache.org>
Tue, 14 Jan 2020 10:29:19 +0000 (10:29 +0000)
  --enable-systemd=static per covener's suggestion in
  <CALK=YjPrN644NtLROwYPyBeCpev-GHSAD2J-Z2hupLymZ0op-g@mail.gmail.com>
  Also fix the APACHE_MODULE() usage; disable the module by default
  for the "all" modules selection.

PR: 57632

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1872763 13f79535-47bb-0310-9956-ffa450edef68

modules/arch/unix/config5.m4

index 62b229748beced05531fc557e8f0e0aa83d39d8b..9351fca593b7977025951c8af69945fcb528e1b8 100644 (file)
@@ -20,13 +20,12 @@ APACHE_MODULE(privileges, Per-virtualhost Unix UserIDs and enhanced security for
   fi
 ])
 
-APACHE_MODULE(systemd, Systemd support, , , all, [
+APACHE_MODULE(systemd, Systemd support, , , no, [
   if test "${ac_cv_header_systemd_sd_daemon_h}" = "no" || test -z "${SYSTEMD_LIBS}"; then
     AC_MSG_WARN([Your system does not support systemd.])
     enable_systemd="no"
   else
     APR_ADDTO(MOD_SYSTEMD_LDADD, [$SYSTEMD_LIBS])
-    enable_systemd="yes"
   fi
 ])