[Bug 59894] New: Cannot load mod_jk.so into server . undefined symbol: apr_atomic_inc32 (Apache 2.0.65 )
https://bz.apache.org/bugzilla/show_bug.cgi?id=59894 Bug ID: 59894 Summary: Cannot load mod_jk.so into server . undefined symbol: apr_atomic_inc32 (Apache 2.0.65 ) Product: Tomcat Connectors Version: 1.2.41 Hardware: HP OS: Linux Status: NEW Severity: normal Priority: P2 Component: mod_jk Assignee: dev@tomcat.apache.org Reporter: vvp@gmail.com While compaling mod_jk.so no errors. Apache reporting error Cannot load mod_jk.so into server: : undefined symbol: apr_atomic_inc32 -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 59895] New: Cannot load mod_jk.so into server . undefined symbol: apr_atomic_inc32 (Apache 2.0.65 )
https://bz.apache.org/bugzilla/show_bug.cgi?id=59895 Bug ID: 59895 Summary: Cannot load mod_jk.so into server . undefined symbol: apr_atomic_inc32 (Apache 2.0.65 ) Product: Tomcat Connectors Version: 1.2.41 Hardware: HP OS: Linux Status: NEW Severity: normal Priority: P2 Component: mod_jk Assignee: dev@tomcat.apache.org Reporter: vvp@gmail.com While compiling mod_jk.so no errors. Apache reporting error Cannot load mod_jk.so into server: : undefined symbol: apr_atomic_inc32 -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org
[Bug 59895] Cannot load mod_jk.so into server . undefined symbol: apr_atomic_inc32 (Apache 2.0.65 )
https://bz.apache.org/bugzilla/show_bug.cgi?id=59895 --- Comment #1 from Rainer Jung --- What is your Linux distribution and its version? What is your compiler (gcc?) and version? It seems your APR libraries do not have atomics support. Can you please provide the version number of the APR libraries? Are they platform provided (Linux) or were they compiled together with the Apache web server independent of the OS packages? APR should provide atomics starting with version 1.0. If your APR is at least 1.0, we need to find out, how it was compiled (whether ir provides atomics and if not why). If it is 0.9: the names of the atomics functions have changed between 0.9 and 1.0. Replacing names in file native/common/jk_global.h should compile and work with 0.9: apr_atomic_inc32 => apr_atomic_inc apr_atomic_add32 => apr_atomic_add -- You are receiving this mail because: You are the assignee for the bug. - To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org