From: Jeff Trawick [mailto:[EMAIL PROTECTED]]
>try the patch at the bottom...
That works with the source with a cvs datespec of "2/19/2001 10:00 MST".
With a fresh cvs update, there are two new problems.
First, it looks like stdint.h (?) is now included in APR's mktemp.c. There's
no stdint.h on FreeBSD.
Resolving that with a simple "#ifndef __FreeBSD__", I now run into this
--
server/mpm/perchild/.libs/libperchild.a(perchild.o): In function
`child_main':
/logs/cfr/apache/httpd-2.0/server/mpm/perchild/perchild.c(.text+0x10b5):
undefined reference to `ap_sigwait'
--
>Now you get to the almost indescribable problems we've had running a
>threaded MPM, or even a non-threaded MPM which links with libc_r and
>adds a thread lock here and there within APR, on various levels of
>reeBSD.
You see this with the prefork mpm too? Is there a reproducible test case or
is it seemingly random?
Could it be related to this output from configure?
--
Applying APR hints file rules for i386-unknown-freebsd4.1
Adding "-lcrypt" to LIBS
Setting enable_threads to "no"
Adding "-D_REENTRANT -D_THREAD_SAFE" to THREAD_CPPFLAGS
--
Why is enable_threads "no"?
-Charles