
07-20-2004, 01:54 PM
|
|
Registered User
|
|
Join Date: Jul 2004
Posts: 10
|
|
|
Iconv Installation
Hi,
Iconv installation can be done as follows,
Download libiconv from, http://ftp.gnu.org/pub/gnu/libiconv/...v-1.9.1.tar.gz and perform the following steps,
1. tar -zxf libiconv-1.9.1.tar.gz
2. cd libiconv-1.9.1
3. ./configure
4. make
5. make install
Iconv will be installed in /usr/local/bin by default.
To enable php support for inconv add the option --with-iconv=/usr/local in the configure options and proceed with the rest of the steps for php compile ( make, make install ). This should configure php with iconv support..
|