blob: 6eb5058104053a3f1403be22a97b7d7e03a6937f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
--- mod_dnssd-0.6/src/mod_dnssd.c.httpd24
+++ mod_dnssd-0.6/src/mod_dnssd.c
@@ -26,6 +26,9 @@
#include <unixd.h>
#include <apr_signal.h>
#include <mpm_common.h>
+#if AP_MODULE_MAGIC_AT_LEAST(20090130,0)
+#include <mod_unixd.h>
+#endif
#include <unistd.h>
@@ -576,7 +579,11 @@ static void child_process(apr_pool_t *p,
ap_assert(d);
+#if AP_MODULE_MAGIC_AT_LEAST(20090130,0)
+ ap_unixd_setup_child();
+#else
unixd_setup_child();
+#endif
if (pipe(sigterm_pipe_fds) < 0) {
ap_log_error(APLOG_MARK, APLOG_ERR, 0, r.main_server, "pipe() failed: %s", strerror(errno));
|