| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 | <?xml version="1.0" encoding="ISO-8859-1"?><!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [  <!ENTITY % general-entities SYSTEM "../general.ent">  %general-entities;]><sect1 id="ch-system-glibc" xreflabel="Glibc" role="wrap"><title>Glibc-&glibc-version;</title><?dbhtml filename="glibc.html"?><indexterm zone="ch-system-glibc"><primary sortas="a-Glibc">Glibc</primary></indexterm><sect2 role="package"><title/><segmentedlist><segtitle>&buildtime;</segtitle><segtitle>&diskspace;</segtitle><seglistitem><seg>12.3 SBU</seg><seg>784 MB</seg></seglistitem></segmentedlist></sect2><sect2 role="installation"><title>Installation of Glibc</title><para>The linuxthreads tarball contains the man pages for the threadinglibraries installed by glibc.  Unpack the tarball from within the glibc sourcedirectory:</para><screen><userinput>tar xjvf ../glibc-linuxthreads-&glibc-version;.tar.bz2</userinput></screen><para>Create a build directory:</para><screen><userinput>mkdir ../glibc-buildcd ../glibc-build</userinput></screen><para>Now prepare Glibc for compilation:</para><screen><userinput>../glibc-&glibc-version;/configure --prefix=/usr \    --disable-profile --enable-add-ons \    --enable-kernel=2.6.0 --without-cvs \    --libexecdir=/usr/lib/glibc</userinput></screen><para>Compile the package:</para><screen><userinput>make</userinput></screen><para>Test the results:</para><screen><userinput>make check</userinput></screen><para>The Glibc test suite is highly dependent on certain functions of your hostsystem. See testing for explanations.</para><para>Fix an annoying little warning with:</para><screen><userinput>touch /etc/ld.so.conf</userinput></screen><para>And install the package:</para><screen><userinput>make install</userinput></screen><para>To install the Glibc locales, use the followingcommand:</para><screen><userinput>make localedata/install-locales</userinput></screen><para>An alternative to running the previous command is to install only thoselocales which you need or want. The following instructions, instead of the install-locales target above, will install the minimum set of locales necessary for the tests to run successfully:</para><screen><userinput>mkdir -p /usr/lib/localelocaledef -i de_DE -f ISO-8859-1 de_DElocaledef -i de_DE@euro -f ISO-8859-15 de_DE@eurolocaledef -i en_HK -f ISO-8859-1 en_HKlocaledef -i en_PH -f ISO-8859-1 en_PHlocaledef -i en_US -f ISO-8859-1 en_USlocaledef -i es_MX -f ISO-8859-1 es_MXlocaledef -i fa_IR -f UTF-8 fa_IRlocaledef -i fr_FR -f ISO-8859-1 fr_FRlocaledef -i fr_FR@euro -f ISO-8859-15 fr_FR@eurolocaledef -i it_IT -f ISO-8859-1 it_ITlocaledef -i ja_JP -f EUC-JP ja_JP</userinput></screen><para>Build the linuxthreads man pages:</para><screen><userinput>make -C ../glibc-&glibc-version;/linuxthreads/man</userinput></screen><para>And install these pages:</para><screen><userinput>make -C ../glibc-&glibc-version;/linuxthreads/man install</userinput></screen></sect2><sect2 id="conf-glibc" role="configuration"><title>Configuring Glibc</title><para>Create a new file <filename>/etc/nsswitch.conf</filename> by running thefollowing:</para><screen><userinput>cat > /etc/nsswitch.conf << "EOF"<literal># Begin /etc/nsswitch.confpasswd: filesgroup: filesshadow: fileshosts: files dnsnetworks: filesprotocols: filesservices: filesethers: filesrpc: files# End /etc/nsswitch.conf</literal>EOF</userinput></screen><para>To find out what time zone you're in, run the following script:</para><screen><userinput>tzselect</userinput></screen><para>Then create the <filename>/etc/localtime</filename> file by running:</para><screen><userinput>cp --remove-destination /usr/share/zoneinfo/<replaceable>[xxx]</replaceable> \    /etc/localtime</userinput></screen></sect2><sect2 id="conf-ld" role="configuration"><title>Configuring Dynamic Loader</title><para>Create a new file <filename>/etc/ld.so.conf</filename> by running thefollowing:</para><screen><userinput>cat > /etc/ld.so.conf << "EOF"<literal># Begin /etc/ld.so.conf/usr/local/lib/opt/lib# End /etc/ld.so.conf</literal>EOF</userinput></screen></sect2><sect2 id="contents-glibc" role="content"><title>Contents of Glibc</title><para>See testing</para></sect2></sect1>
 |