On Wed, 30 Sep 2015, Stuart Henderson wrote:
> On 2015-09-30, Abu Aufa <[email protected]> wrote:
> > On Tue, 29 Sep 2015, Ted Unangst wrote:
> >
> >> Abu Aufa wrote:
> >> > Hi,
> >> >
> >> > I upgraded my system to 28th September's snapshot. Right after upgrade,
> >> > I
> >> > saw httpd gave error in dmesg. Here's my dmesg:
> >>
> >> > I disabled the fastcgi part to test, but still the httpd dies on start
> >> > (manually and/or on boot). Httpd was ok before upgrading. Is there any
> >> > info on new feature or something that I can refer to? thanks.
> >>
> >> The latest snapshots include a bunch of tame() calls in userland programs,
> >> but
> >> some of them were added optimistically. httpd is trying to do something
> >> it's
> >> not yet permitted to do.
> >>
> >> For now, please report such errors.
> >>
> >> If you need a working version, the diffs aren't committed yet, so you can
> >> rebuild httpd from source and it should work fine.
> >>
> >>
> >>
> > Thanks for the info Ted. I'm currently rebuilding the src, following the
> > "5 - Building the System from Source" page. I just want to ask another
> > question, can I just rebuild only the httpd from source? Thanks again.
> >
> >
>
> Yes,
>
> $ cd /usr/src/usr.sbin/httpd
> $ cvs up -PdA
> $ make obj && make depend && make
> $ su root -c 'make install'
>
>
>
Thank you very much Stuart!