Difference between revisions of "Libiconv"

From CBLFS
Jump to navigationJump to search
(Created page with '{| style="text-align: left; background-color: AliceBlue;" |-valign="top" !Download Source: | http://liboil.freedesktop.org/download/liboil-{{Liboil-Version}}.tar.gz |} ---- {{P…')
 
 
Line 2: Line 2:
 
|-valign="top"
 
|-valign="top"
 
!Download Source:
 
!Download Source:
| http://liboil.freedesktop.org/download/liboil-{{Liboil-Version}}.tar.gz
+
| http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.13.1.tar.gz
 
|}
 
|}
  

Latest revision as of 22:53, 20 September 2009

Download Source: http://ftp.gnu.org/pub/gnu/libiconv/libiconv-1.13.1.tar.gz

Introduction to Libiconv

For historical reasons, international text is often encoded using a language or country dependent character encoding. With the advent of the internet and the frequent exchange of text across countries - even the viewing of a web page from a foreign country is a "text exchange" in this context -, conversions between these encodings have become important. They have also become a problem, because many characters which are present in one encoding are absent in many other encodings. To solve this mess, the Unicode encoding has been created. It is a super-encoding of all others and is therefore the default encoding for new text formats like XML

Project Homepage: http://www.gnu.org/software/libiconv/

Dependencies

Required

Non-Multilib

Compile the package:

./configure --prefix=/usr &&
make

Install the package

make install

Multilib

32Bit

Compile the package:


CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=/usr --build=${CLFS_TARGET32} &&
make

Install the package

make install 

N32

Compile the package:

CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=/usr --libdir=/usr/lib32 &&
make

Install the package

make install 

64Bit

Compile the package:

CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --libdir=/usr/lib64 &&
make

Install the package

make install