Hmm, I am not sure what was happening before then since there is no libexpat.so dependency in pyexpat.so. That actually seems wrong to me.
The only last thing I can think of is that pyexpat.so was compiled against system header definitions but then didn’t actually link the libexpat library as it should and was relying on application it is loaded in linking it. When Apache brought in its own libexpat and it was different, it crashed. Now Apache is using system one, is okay. Important thing is that it is working. > On 25 May 2016, at 2:57 AM, 'Abraham Varricatt' via modwsgi > <[email protected]> wrote: > > Here's the output after building when expat-devel is installed, > > [vagrant@bottle ~]$ ldd > /srv/VENVs/bottle/lib/python2.7/site-packages/_xmlplus/parsers/pyexpat.so > linux-vdso.so.1 => (0x00007ffe57da5000) > libpython2.7.so.1.0 => > /opt/oss_sources/Python-2.7.11/../COMPILED_PYTHON/lib/libpython2.7.so.1.0 > (0x00007f2b29f7d000) > libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f2b29d5a000) > libc.so.6 => /lib64/libc.so.6 (0x00007f2b299c6000) > libdl.so.2 => /lib64/libdl.so.2 (0x00007f2b297c2000) > libutil.so.1 => /lib64/libutil.so.1 (0x00007f2b295be000) > libm.so.6 => /lib64/libm.so.6 (0x00007f2b2933a000) > /lib64/ld-linux-x86-64.so.2 (0x00007f2b2a59c000) > [vagrant@bottle ~]$ ldd /usr/local/apache2/bin/httpd > linux-vdso.so.1 => (0x00007ffd4bb1f000) > libpcre.so.0 => /lib64/libpcre.so.0 (0x00007f1ac6657000) > libaprutil-1.so.0 => /usr/local/apache2/lib/libaprutil-1.so.0 > (0x00007f1ac6431000) > libexpat.so.1 => /lib64/libexpat.so.1 (0x00007f1ac6209000) > libapr-1.so.0 => /usr/local/apache2/lib/libapr-1.so.0 > (0x00007f1ac5fd6000) > librt.so.1 => /lib64/librt.so.1 (0x00007f1ac5dcd000) > libcrypt.so.1 => /lib64/libcrypt.so.1 (0x00007f1ac5b96000) > libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f1ac5979000) > libc.so.6 => /lib64/libc.so.6 (0x00007f1ac55e4000) > /lib64/ld-linux-x86-64.so.2 (0x00007f1ac688a000) > libfreebl3.so => /lib64/libfreebl3.so (0x00007f1ac53e1000) > libdl.so.2 => /lib64/libdl.so.2 (0x00007f1ac51dc000) > [vagrant@bottle ~]$ > > > Apache's expat is now pointing to the system one. > > Yours, > Abraham V. > > > -- > You received this message because you are subscribed to the Google Groups > "modwsgi" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected] > <mailto:[email protected]>. > To post to this group, send email to [email protected] > <mailto:[email protected]>. > Visit this group at https://groups.google.com/group/modwsgi > <https://groups.google.com/group/modwsgi>. > For more options, visit https://groups.google.com/d/optout > <https://groups.google.com/d/optout>. -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/modwsgi. For more options, visit https://groups.google.com/d/optout.
