--
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 modwsgi+u...@googlegroups.com.
To post to this group, send email to mod...@googlegroups.com.
Visit this group at http://groups.google.com/group/modwsgi.
For more options, visit https://groups.google.com/d/optout.
yum groupinstall "Development tools"
yum install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel
cd ~
wget http://www.python.org/ftp/python/2.7.5/Python-2.7.5.tgz
tar xvf Python-2.7.5.tgz
cd Python-2.7.5
./configure --enable-shared --with-threads
make
make install
cd ~
wget http://modwsgi.googlecode.com/files/mod_wsgi-3.4.tar.gz
tar xvf mod_wsgi-3.4.tar.gz
cd mod_wsgi-3.4
./configure --with-python=/usr/local/bin/python2.7
make
make install
# ldd /usr/lib64/httpd/modules/mod_wsgi.so
linux-vdso.so.1 => (0x00007fffde754000)
libpython2.7.so.1.0 => /usr/local/lib/libpython2.7.so.1.0 (0x00007f9723498000)
libpthread.so.0 => /lib64/libpthread.so.0 (0x00007f972326d000)
libdl.so.2 => /lib64/libdl.so.2 (0x00007f9723069000)
libutil.so.1 => /lib64/libutil.so.1 (0x00007f9722e66000)
libm.so.6 => /lib64/libm.so.6 (0x00007f9722be1000)
libc.so.6 => /lib64/libc.so.6 (0x00007f972284d000)
/lib64/ld-linux-x86-64.so.2 (0x000000333e400000)
Thank you again.
Cheers,
Filipe