how to downgrade libxml2

I'm glad to say that i found the solution.
The problem was that libxml2 don't see iconv (by default);
I solved this problem by recompiling libxml2 --with-iconv=/usr/local

Code:
#cd /usr/local/directadmin/custombuild
#tar -zxvf libxml2-2.6.32.tar.gz
#cd libxml2-2.6.32
#./configure --with-iconv=/usr/local
#make
#make install
 
Back
Top