Changeset 038b4c75


Ignore:
Timestamp:
11/26/2016 07:20:28 AM (7 years ago)
Author:
DJ Lucas <dj@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
e6af89ca
Parents:
9d92eb7a
Message:

Remove mk-ca-bundle.pl and use ca-path instead of ca-bundle for curl.

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r9d92eb7a r038b4c75  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "25">                   <!-- Always 2 digits -->
     3<!ENTITY day          "26">                   <!-- Always 2 digits -->
    44<!ENTITY month        "11">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2016">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "November 25th &year;">
     9<!ENTITY releasedate  "November 26th &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • introduction/welcome/changelog.xml

    r9d92eb7a r038b4c75  
    4545
    4646    <listitem>
     47      <para>November 26th, 2016</para>
     48      <itemizedlist>
     49        <listitem>
     50          <para>[dj] - Curl uses OpenSSL by default, use --with-ca-path instead
     51          of --with-ca-bundle, and remove mk-ca-bundle.pl.</para>
     52        </listitem>
     53      </itemizedlist>
     54    </listitem>
     55
     56    <listitem>
    4757      <para>November 25th, 2016</para>
    4858      <itemizedlist>
  • networking/netlibs/curl.xml

    r9d92eb7a r038b4c75  
    123123            --disable-static                        \
    124124            --enable-threaded-resolver              \
    125             --with-ca-bundle=/etc/ssl/ca-bundle.crt &amp;&amp;
     125            --with-ca-path=/etc/ssl/certs &amp;&amp;
    126126make</userinput></screen>
    127127
     
    174174
    175175<screen role="root"><userinput>make install &amp;&amp;
    176 install -vm755 lib/mk-ca-bundle.pl /usr/bin &amp;&amp;
    177176
    178177rm -rf docs/examples/.deps &amp;&amp;
     
    208207
    209208    <para>
    210       <parameter>--with-ca-bundle=/etc/ssl/ca-bundle.crt</parameter>: This
    211       switch sets the location of the BLFS <xref linkend="cacerts"/> bundle.
     209      <parameter>--with-ca-path=/etc/ssl/certs</parameter>: This
     210      switch sets the location of the BLFS <xref linkend="cacerts"/>.
    212211    </para>
    213212
     
    221220      <option>--without-ssl --with-gnutls</option>: Use to
    222221      build with <application>GnuTLS</application> support
     222      instead of <application>OpenSSL</application> for SSL/TLS.
     223    </para>
     224
     225    <para>
     226      <option>--with-ca-bunlde=/etc/ssl/ca-bundle.crt</option>: Use
     227      this switch instead of <parameter>--with-ca-path</parameter> if
     228      building with <application>GnuTLS</application> support
    223229      instead of <application>OpenSSL</application> for SSL/TLS.
    224230    </para>
     
    242248      <seglistitem>
    243249        <seg>
    244            curl, curl-config, and mk-ca-bundle.pl
     250           curl, and curl-config
    245251        </seg>
    246252        <seg>
     
    284290      </varlistentry>
    285291
    286       <varlistentry id="mk-ca-bundle-pl">
    287         <term><command>mk-ca-bundle.pl</command></term>
    288         <listitem>
    289           <para>
    290             downloads a copy of certdata.txt from the Mozilla version control
    291             system, and reformats it for use by
    292             <application>gnutls</application>.
    293           </para>
    294           <indexterm zone="curl mk-ca-bundle-pl">
    295             <primary sortas="b-mk-ca-bundle-pl">mk-ca-bundle.pl</primary>
    296           </indexterm>
    297         </listitem>
    298       </varlistentry>
    299 
    300292      <varlistentry id="libcurl">
    301293        <term><filename class="libraryfile">libcurl.so</filename></term>
Note: See TracChangeset for help on using the changeset viewer.