Hello!
Code:
rpm -qa | grep libxml2
This will search for
libxml2 if it's installed by RPM. If it's there use:
Then when you compile PHP5 use:
Code:
./configure --with-libxml2-dir=/usr/lib/
for example.
If it's not installed, you can find it
here . Also you need the devel, from
here .
Hope this helped!
Boby