From e343347ab6cc304abd5977d1ab5b287898590e23 Mon Sep 17 00:00:00 2001 From: Yann Ylavic Date: Thu, 14 Mar 2024 17:12:17 +0000 Subject: [PATCH] mod_systemd: Axe APR_OPTIONAL_FN redeclarations to avoid compiler warning. ap_find_systemd_socket() and ap_systemd_listen_fds() are already declared in "ap_listen.h", so just include them. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1916312 13f79535-47bb-0310-9956-ffa450edef68 --- modules/arch/unix/mod_systemd.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/modules/arch/unix/mod_systemd.c b/modules/arch/unix/mod_systemd.c index 6439a5c8ef9..2de1c9befdc 100644 --- a/modules/arch/unix/mod_systemd.c +++ b/modules/arch/unix/mod_systemd.c @@ -18,6 +18,7 @@ #include #include #include "ap_mpm.h" +#include "ap_listen.h" #include #include #include @@ -34,12 +35,6 @@ #include #endif -APR_DECLARE_OPTIONAL_FN(int, - ap_find_systemd_socket, (process_rec *, apr_port_t)); - -APR_DECLARE_OPTIONAL_FN(int, - ap_systemd_listen_fds, (int)); - static int systemd_pre_config(apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptemp) {