/usr/bin/libtool --silent --mode=compile i686-pc-linux-gnu-gcc -pthread -O2 -pipe -fomit-frame-pointer -march=i686 -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -DAP_DEBUG -I. -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/os/unix -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/server/mpm/experimental/peruser -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/modules/http -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/modules/filters -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/modules/proxy -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/include -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/modules/generators -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/modules/mappers -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/modules/database -I/usr/include/apr-1 -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/modules/proxy/../generators -I/usr/include -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/modules/ssl -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/modules/dav/main -prefer-non-pic -static -c modules.c && touch modules.lo i686-pc-linux-gnu-gcc -pthread -O2 -pipe -fomit-frame-pointer -march=i686 -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -DAP_DEBUG -I. -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/os/unix -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/server/mpm/experimental/peruser -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/modules/http -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/modules/filters -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/modules/proxy -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/include -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/modules/generators -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/modules/mappers -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/modules/database -I/usr/include/apr-1 -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/modules/proxy/../generators -I/usr/include -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/modules/ssl -I/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/modules/dav/main -c /var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6/server/buildmark.c /usr/bin/libtool --silent --mode=link i686-pc-linux-gnu-gcc -pthread -O2 -pipe -fomit-frame-pointer -march=i686 -L/usr/lib -Wl,-z,now -Wl,--no-as-needed -o apache2 modules.lo buildmark.o -export-dynamic server/libmain.la modules/http/libmod_http.la modules/mappers/libmod_so.la server/mpm/experimental/peruser/libperuser.la os/unix/libos.la -lm -L/usr/lib -lpcre /usr/lib/libaprutil-1.la -lgdbm -lexpat /usr/lib/libapr-1.la -luuid -lrt -lcrypt -lpthread -ldl server/.libs/libmain.a(core.o):(.rodata+0x64c): undefined reference to `ap_mpm_set_exception_hook' collect2: ld returned 1 exit status make[1]: *** [apache2] Fehler 1 make[1]: Leaving directory `/var/tmp/portage/www-servers/apache-2.2.6/work/httpd-2.2.6' make: *** [all-recursive] Fehler 1 # readelf -s server/core.o | grep ap_mpm_set_exception_hook 291: 00000000 0 NOTYPE GLOBAL DEFAULT UND ap_mpm_set_exception_hook servers/core.c: #if AP_ENABLE_EXCEPTION_HOOK AP_INIT_TAKE1("EnableExceptionHook", ap_mpm_set_exception_hook, NULL, RSRC_CONF, "Controls whether exception hook may be called after a crash"), #endif ap_mpm_set_exception_hook() is part of servers/mpm_common.c: #ifdef AP_MPM_WANT_FATAL_SIGNAL_HANDLER static pid_t parent_pid, my_pid; apr_pool_t *pconf; #if AP_ENABLE_EXCEPTION_HOOK static int exception_hook_enabled; const char *ap_mpm_set_exception_hook(cmd_parms *cmd, void *dummy, const char *arg) { the problem here is 1) AP_ENABLE_EXCEPTION_HOOK has been defined to 1 enabling the conditional code in core.c 2) AP_MPM_WANT_FATAL_SIGNAL_HANDLER is not defined, which means the function will not be part of mpm_common.o, therefore causing the error above (possible) cause: AP_MPM_WANT_FATAL_SIGNAL_HANDLER is defined by a number (all?) of mpm worker modules, except mpm_peruser: # grep -nR "AP_MPM_WANT_FATAL_SIGNAL_HANDLER" . ./server/mpm_common.c:1161:#ifdef AP_MPM_WANT_FATAL_SIGNAL_HANDLER ./server/mpm_common.c:1317:#endif /* AP_MPM_WANT_FATAL_SIGNAL_HANDLER */ ./server/mpm/prefork/mpm.h:49:#define AP_MPM_WANT_FATAL_SIGNAL_HANDLER ./server/mpm/experimental/event/mpm.h:49:#define AP_MPM_WANT_FATAL_SIGNAL_HANDLER ./server/mpm/experimental/itk/mpm.h:52:#define AP_MPM_WANT_FATAL_SIGNAL_HANDLER ./server/mpm/worker/mpm.h:49:#define AP_MPM_WANT_FATAL_SIGNAL_HANDLER ./include/mpm_common.h:356:#ifdef AP_MPM_WANT_FATAL_SIGNAL_HANDLER the solution seems to also add #define AP_MPM_WANT_FATAL_SIGNAL_HANDLER to mpm_peruser, even though it has been working fine without before... Reproducible: Always Steps to Reproduce: 1. set USE="mpm-peruser" 2. emerge =apache-2.2.6 3. Actual Results: *kaboom*
Created attachment 130537 [details, diff] Add #define AP_MPM_WANT_FATAL_SIGNAL_HANDLER to peruser/mpm.h Works for me
do not compile with USE=debug
erm, scratch the WONT, i have add it to the patch in svn, will be in the next revision
*** Bug 192746 has been marked as a duplicate of this bug. ***
*** Bug 193282 has been marked as a duplicate of this bug. ***
2.2.6-r1 now in cvs
(In reply to comment #6) > 2.2.6-r1 now in cvs > It seems FIXED. Thanks a lot.