Friday, July 1, 2011

PIL Installation Error: Bad value Of libz, Recompile With "-fPIC"

Solution:
Recompile zlib with "-fPIC" option after configure. Modify as following:
CC=gcc
to
CC=gcc -fPIC

Then make install.