Changeset 09b9dccb for gnome


Ignore:
Timestamp:
04/26/2006 10:12:21 PM (18 years ago)
Author:
Randy McMurchy <randy@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
a760926
Parents:
bca6dfb6
Message:

Added clarification about NSS/NSPR libraries to the Evolution and Evolution Data Server instructions

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@5948 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • gnome/add/evolution-data-server.xml

    rbca6dfb6 r09b9dccb  
    6969    <xref linkend="libsoup"/></para>
    7070
     71    <bridgehead renderas="sect4">Recommended
     72    (For SSL and S/MIME support)</bridgehead>
     73    <para role="recommended"><xref linkend="nss"/></para>
     74
     75    <para>The <application>NSS</application> package is not required if you
     76    have <xref linkend="firefox"/>, <xref linkend="thunderbird"/> or
     77    <xref linkend="seamonkey"/> installed. These packages contain internal
     78    copies of <application>NSS</application> (or they used a system-installed
     79    copy). If any of the three packages are installed, one way or another you
     80    will already have NSS/NSPR libraries on your system.</para>
     81
    7182    <bridgehead renderas="sect4">Optional</bridgehead>
    7283    <para role="optional"><xref linkend="openldap"/>,
    73     <xref linkend="nss"/>,
    7484    <xref linkend="sendmail"/>
    7585    (or any other <ulink url="../server/mail.html">MTA</ulink>
     
    91101    the following commands:</para>
    92102
     103    <note>
     104      <para>The instructions below assume you have the NSS/NSPR libraries
     105      installed on your system. If you elected not to install
     106      <application>NSS</application> (or one of the other packages mentioned
     107      above), you'll need to remove the following four parameter settings from
     108      the <command>configure</command> command below:</para>
     109
     110      <literallayout><parameter>            --enable-nss
     111            --enable-smime
     112            --with-nspr-includes=/usr/include/nspr
     113            --with-nss-includes=/usr/include/nss</parameter></literallayout>
     114    </note>
     115
    93116<screen><userinput>./configure --prefix=`pkg-config --variable=prefix ORBit-2.0` \
    94117            --libexecdir=`pkg-config --variable=prefix \
    95             ORBit-2.0`/lib/evolution-data-server-1.2 &amp;&amp;
     118                ORBit-2.0`/lib/evolution-data-server-1.2 \
     119            --enable-nntp \
     120            --enable-nss \
     121            --enable-smime \
     122            --with-nspr-includes=/usr/include/nspr \
     123            --with-nss-includes=/usr/include/nss &amp;&amp;
    96124make</userinput></screen>
    97125
     
    113141    instead of <filename
    114142    class="directory">$GNOME_PREFIX/libexec</filename>.</para>
     143
     144    <para><parameter>--enable-nntp</parameter>: This parameter is used to build
     145    the Usenet news (NNTP) backend.</para>
     146
     147    <para><parameter>--enable-nss</parameter>: This parameter is used to pull
     148    in the Mozilla Network Security Services libraries for SSL support.</para>
     149
     150    <para><parameter>--enable-smime</parameter>: This parameter is used to pull
     151    in the Mozilla Network Security Services libraries for S/MIME
     152    support.</para>
     153
     154    <para><parameter>--with-{nspr,nss}-includes</parameter>: This parameter is
     155    used to identify where the Mozilla Network Security Services interface
     156    headers are located. By default,
     157    <application>Evolution Data Server</application> uses
     158    <filename>mozilla-{nss,nspr}.pc</filename> files to locate the headers
     159    and chances are you will not have <application>Mozilla</application>
     160    installed.</para>
    115161
    116162    <note>
Note: See TracChangeset for help on using the changeset viewer.