libidn-1.28
Introduction to libidn
libidn is a package designed for
internationalized string handling based on the Stringprep,
Punycode and IDNA
specifications defined by the Internet Engineering Task Force
(IETF) Internationalized Domain Names (IDN) working group, used for
internationalized domain names. This is useful for converting data
from the system's native representation into UTF-8, transforming
Unicode strings into ASCII strings, allowing applications to use
certain ASCII name labels (beginning with a special prefix) to
represent non-ASCII name labels, and converting entire domain names
to and from the ASCII Compatible Encoding (ACE) form.
This package is known to build and work properly using an LFS-7.5
platform.
Package Information
libidn Dependencies
Optional
Pth-2.0.7,
Emacs-24.3, GTK-Doc-1.19, OpenJDK-1.7.0.51/IcedTea-2.4.5,
DotGNU
Portable.NET or Mono, and Valgrind
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/libidn
Installation of libidn
Install libidn by running the
following commands:
./configure --prefix=/usr --disable-static &&
make
To test the results, issue: make
check.
Now, as the root
user:
make install &&
find doc -name "Makefile*" -delete &&
rm -rf -v doc/{gdoc,idn.1,stamp-vti,man,texi} &&
mkdir -v /usr/share/doc/libidn-1.28 &&
cp -r -v doc/* /usr/share/doc/libidn-1.28
Command Explanations
--disable-static
: This
switch prevents installation of static versions of the libraries.
--enable-gtk-doc
: Use this parameter if
GTK-Doc is installed and you wish
to rebuild and install the API documentation.
Contents
Installed Program:
idn
Installed Library:
libidn.so
Installed Directories:
/usr/share/doc/libidn-1.28 and
/usr/share/gtk-doc/html/libidn
Short Descriptions
idn
|
is a command line interface to the internationalized
domain name library.
|
libidn.so
|
contains a generic Stringprep implementation that does
Unicode 3.2 NFKC normalization, mapping and prohibition
of characters, and bidirectional character handling.
Profiles for Nameprep, iSCSI, SASL and XMPP are included
as well as support for Punycode and ASCII Compatible
Encoding (ACE) via IDNA. A mechanism to define Top-Level
Domain (TLD) specific validation tables, and to compare
strings against those tables, as well as default tables
for some TLDs are included.
|
Last updated on 2014-02-17 15:16:31 -0800