Do I need to reconfigure PHP to run PDFlib? I have php and apache already installed on my machine and don't want to mess anyting up. A really do not want to reinstall Apache or PHP for that matter.
I got the following from the articles section of this site. Is that what I need to do?
download PDFLib 3.0.1 from http://www.pdflib.com
apply every patch you find at http://www.pdflib.com/pdflib/patches.html
Configure, Make & install PDFLib
#./configure --enabled-shared-pdflib
#make
#make install
You'll get PDFLib installed in /usr/local/lib .
Configure PHP
#./configure --with-apxs=/usr/bin/apxs \
--with-gd --with-pdflib=/usr/local --with-mysql=/usr/local \
--with-config-file-path=/etc/httpd --with-zlib-dir=/usr \
--with-ttf=/usr/local/include \
--with-jpeg-dir=/usr --with-tiff-dir=/usr \
--with-system-regex=yes --enable-debug=no
#make
#make install