Changeset 09b9dccb


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

Files:
3 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>
  • introduction/welcome/changelog.xml

    rbca6dfb6 r09b9dccb  
    4646      <itemizedlist>
    4747        <listitem>
     48          <para>[randy] - Added clarification about NSS/NSPR libraries to the
     49          Evolution and Evolution Data Server instructions.</para>
     50        </listitem>
     51        <listitem>
    4852          <para>[bdubbs] - Updated to iso-codes-0.51.</para>
    4953        </listitem>
    5054        <listitem>
    51           <para>[bdubbs] - Updated ntp configuration to use pool serevers.</para>
     55          <para>[bdubbs] - Updated ntp configuration to use pool servers.</para>
    5256        </listitem>
    5357        <listitem>
  • xsoft/office/evolution.xml

    rbca6dfb6 r09b9dccb  
    6666    <xref linkend="evolution-data-server"/></para>
    6767
    68     <bridgehead renderas="sect4">Recommended</bridgehead>
    69     <para role="recommended"><xref linkend="nss"/> (required for SSL and
    70     S/MIME support)</para>
     68    <bridgehead renderas="sect4">Recommended
     69    (For SSL and S/MIME support)</bridgehead>
     70    <para role="recommended"><xref linkend="nss"/></para>
     71
     72    <para>The <application>NSS</application> package is not
     73    required if you have <xref linkend="firefox"/>,
     74    <xref linkend="thunderbird"/> or <xref linkend="seamonkey"/> installed.
     75    These packages contain internal copies of <application>NSS</application>
     76    (or they used a system-installed copy). If any of the three packages
     77    are installed, one way or another you will already have
     78    NSS/NSPR libraries on your system.</para>
    7179
    7280    <bridgehead renderas="sect4">Optional</bridgehead>
     
    7583    <xref linkend="heimdal"/> or <xref linkend="mitkrb"/>,
    7684    <ulink url="http://www.pdc.kth.se/kth-krb/">krb4</ulink>,
    77     <ulink url="&gnome-download-http;/gnome-pilot-conduits/2.0/">
    78     GNOME Pilot conduits</ulink> (requires <xref linkend="pilot-link"/> then
    79     <ulink url="&gnome-download-http;/gnome-pilot/2.0/">
    80     GNOME Pilot</ulink>),
     85    <ulink url="&gnome-download-http;/gnome-pilot-conduits/2.0/">GNOME
     86    Pilot conduits</ulink> (requires
     87    <xref linkend="pilot-link"/> then
     88    <ulink url="&gnome-download-http;/gnome-pilot/2.0/">GNOME Pilot</ulink>),
    8189    <ulink url="&gnome-download-http;/gnome-spell/1.0/">
    8290    GNOME Spell</ulink>,
    8391    <xref linkend="dbus"/>,
    84     <xref linkend="kdebase"/>,
     92    <!-- <xref linkend="kdebase"/>, -->
    8593    <xref linkend="gtk-doc"/>, and
    8694    <xref linkend="docbook-utils"/></para>
     
    96104    <para>Install <application>Evolution</application> by running the following
    97105    commands:</para>
     106
     107    <note>
     108      <para>The instructions below assume you have the NSS/NSPR libraries
     109      installed on your system. If you elected not to install
     110      <application>NSS</application> (or one of the other packages mentioned
     111      above), you'll need to remove the following four parameter settings from
     112      the <command>configure</command> command below:</para>
     113
     114      <literallayout><parameter>            --enable-nss
     115            --enable-smime
     116            --with-nspr-includes=/usr/include/nspr
     117            --with-nss-includes=/usr/include/nss</parameter></literallayout>
     118    </note>
    98119
    99120<screen><userinput>./configure --prefix=`pkg-config --variable=prefix ORBit-2.0` \
    100121            --libexecdir=`pkg-config --variable=prefix ORBit-2.0`/lib \
    101122            --localstatedir=/var/lib \
    102             --sysconfdir=&gnome-etc-dir; &amp;&amp;
     123            --sysconfdir=&gnome-etc-dir; \
     124            --enable-nntp \
     125            --enable-nss \
     126            --enable-smime \
     127            --with-nspr-includes=/usr/include/nspr \
     128            --with-nss-includes=/usr/include/nss &amp;&amp;
    103129make</userinput></screen>
    104130
     
    122148    you wish to build and install the documentation.</para>
    123149    -->
     150
     151    <para><parameter>--enable-nntp</parameter>: This parameter is used to build
     152    the Usenet news (NNTP) backend.</para>
     153
     154    <para><parameter>--enable-nss</parameter>: This parameter is used to pull
     155    in the Mozilla Network Security Services libraries for SSL support.</para>
     156
     157    <para><parameter>--enable-smime</parameter>: This parameter is used to pull
     158    in the Mozilla Network Security Services libraries for S/MIME
     159    support.</para>
     160
     161    <para><parameter>--with-{nspr,nss}-includes</parameter>: This parameter is
     162    used to identify where the Mozilla Network Security Services interface
     163    headers are located. By default, <application>Evolution</application> uses
     164    <filename>mozilla-{nss,nspr}.pc</filename> files to locate the headers
     165    and chances are you will not have <application>Mozilla</application>
     166    installed.</para>
    124167
    125168    <para><option>--with-openldap</option>: This parameter will compile
Note: See TracChangeset for help on using the changeset viewer.