Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 192025 - www-servers/apache-2.2.6 fails to compile with USE="mpm-peruser"
Summary: www-servers/apache-2.2.6 fails to compile with USE="mpm-peruser"
Status: RESOLVED WONTFIX
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Server (show other bugs)
Hardware: All Linux
: High normal
Assignee: Apache Team - Bugzilla Reports
URL:
Whiteboard:
Keywords:
: 192746 193282 (view as bug list)
Depends on:
Blocks:
 
Reported: 2007-09-10 19:24 UTC by Stefan Knoblich
Modified: 2007-09-25 18:18 UTC (History)
2 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
Add #define AP_MPM_WANT_FATAL_SIGNAL_HANDLER to peruser/mpm.h (apache-2.2.6-mpm_peruser-fix.diff,454 bytes, patch)
2007-09-10 19:40 UTC, Stefan Knoblich
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Stefan Knoblich 2007-09-10 19:24:24 UTC
/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*
Comment 1 Stefan Knoblich 2007-09-10 19:40:09 UTC
Created attachment 130537 [details, diff]
Add #define AP_MPM_WANT_FATAL_SIGNAL_HANDLER to peruser/mpm.h

Works for me
Comment 2 Benedikt Böhm (RETIRED) gentoo-dev 2007-09-15 09:16:37 UTC
do not compile with USE=debug
Comment 3 Benedikt Böhm (RETIRED) gentoo-dev 2007-09-15 09:18:40 UTC
erm, scratch the WONT, i have add it to the patch in svn, will be in the next revision
Comment 4 Jakub Moc (RETIRED) gentoo-dev 2007-09-16 23:09:35 UTC
*** Bug 192746 has been marked as a duplicate of this bug. ***
Comment 5 Jakub Moc (RETIRED) gentoo-dev 2007-09-21 06:38:56 UTC
*** Bug 193282 has been marked as a duplicate of this bug. ***
Comment 6 Benedikt Böhm (RETIRED) gentoo-dev 2007-09-21 20:09:15 UTC
2.2.6-r1 now in cvs
Comment 7 Gabor Garami 2007-09-25 18:18:08 UTC
(In reply to comment #6)
> 2.2.6-r1 now in cvs
> 

It seems FIXED. Thanks a lot.