Re: www/mod_dnssd broken for apache24

2014-09-11 Thread Dag-Erling Smørgrav
Dag-Erling Smørgrav writes: > Scot Hetzel writes: > > Actually, the port does write to the httpd.conf file during staging. > > The problem is in src/Makefile.in on line 21: > > > > + $(APXS) $(APXS_STAGE) -i -a mod_dnssd.la > Oooh thank you very much, I was looking in the port Makefile rather tha

Re: www/mod_dnssd broken for apache24

2014-09-11 Thread Dag-Erling Smørgrav
Scot Hetzel writes: > Actually, the port does write to the httpd.conf file during staging. > The problem is in src/Makefile.in on line 21: > > + $(APXS) $(APXS_STAGE) -i -a mod_dnssd.la Oooh thank you very much, I was looking in the port Makefile rather than the upstream Makefile. I will fix thi

Re: www/mod_dnssd broken for apache24

2014-09-10 Thread Scot Hetzel
On Wed, Sep 10, 2014 at 5:33 AM, Dag-Erling Smørgrav wrote: > Lowell Gilbert writes: >> --- src/mod_dnssd.c~ 2009-01-27 21:24:00.0 -0500 >> +++ src/mod_dnssd.c 2014-09-09 15:23:08.0 -0400 >> @@ -576,7 +576,7 @@ >> >> ap_assert(d); >> >> -unixd_setup_child(); >> +ap

Re: www/mod_dnssd broken for apache24

2014-09-10 Thread Dag-Erling Smørgrav
Lowell Gilbert writes: > --- src/mod_dnssd.c~ 2009-01-27 21:24:00.0 -0500 > +++ src/mod_dnssd.c 2014-09-09 15:23:08.0 -0400 > @@ -576,7 +576,7 @@ > > ap_assert(d); > > -unixd_setup_child(); > +ap_unixd_setup_child(); > > if (pipe(sigterm_pipe_fds) < 0) {

www/mod_dnssd broken for apache24

2014-09-09 Thread Lowell Gilbert
There are a couple of problems with the mod_dnssd port, but I'm not sure what the best way to fix them would be. One is that an Apache internal function used by the module was renamed in Apache 2.4, so the code needs to depend on the Apache version in use. The following patch works for me, but is i