mirror of
https://github.com/Zeckmathederg/glfs.git
synced 2025-01-25 07:42:13 +08:00
0a7c3921ec
git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@5832 af4574ff-66df-0310-9fd7-8a98e5e911e0
55 lines
1.5 KiB
XML
55 lines
1.5 KiB
XML
<?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="gnome-otherlib-config">
|
|
<?dbhtml filename="otherlib-config.html"?>
|
|
|
|
<sect1info>
|
|
<othername>$LastChangedBy$</othername>
|
|
<date>$Date$</date>
|
|
</sect1info>
|
|
|
|
<title>Pre-installation Configuration</title>
|
|
|
|
<para>Add to your system or personal profile:</para>
|
|
|
|
<screen><literal>export PATH=$PATH:/opt/gnome-1.4/bin
|
|
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/opt/gnome-1.4/lib/pkgconfig
|
|
export GNOME_LIBCONFIG_PATH=/usr/lib
|
|
|
|
if [ -z $INFOPATH ]
|
|
then
|
|
export INFOPATH=/usr/share/info:/opt/gnome-1.4/info
|
|
else
|
|
export INFOPATH=$INFOPATH:/opt/gnome-1.4/info
|
|
fi</literal></screen>
|
|
|
|
<para>Add to your <filename>/etc/ld.so.conf</filename>:</para>
|
|
|
|
<screen role="root"><userinput>cat >> /etc/ld.so.conf << "EOF"
|
|
<literal># Begin GNOME-1 addition to /etc/ld.so.conf
|
|
|
|
/opt/gnome-1.4/lib
|
|
|
|
# End GNOME-1 addition</literal>
|
|
EOF</userinput></screen>
|
|
|
|
<para>Remember to execute <command>ldconfig</command> after installation
|
|
of libraries to update the library cache.</para>
|
|
|
|
<para>Add to your <filename>/etc/man_db.conf</filename>:</para>
|
|
|
|
<screen role="root"><userinput>cat >> /etc/man_db.conf << "EOF"
|
|
<literal># Begin GNOME-1 addition to man_db.conf
|
|
|
|
MANDATORY_MANPATH /opt/gnome-1.4/man
|
|
|
|
# END GNOME-1 addition to man_db.conf</literal>
|
|
EOF</userinput></screen>
|
|
|
|
</sect1>
|