Changeset a4f37269 for general


Ignore:
Timestamp:
06/03/2017 10:32:28 PM (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.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, 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:
2de449e3
Parents:
14bf879
Message:

Update to OpenSSL-1.1.0f. Fixes #8214.
Update to OpenSSL Libraries 1.0.2l. Fixes #9282.
Remove Re-alpine and raplaced with Alpine-2.21.

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

Location:
general/genlib
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • general/genlib/apr-util.xml

    r14bf879 ra4f37269  
    7171          Estimated build time: &apr-util-time;
    7272        </para>
     73      </listitem>
     74    </itemizedlist>
     75
     76    <bridgehead renderas="sect3">Additional Downloads</bridgehead>
     77    <itemizedlist spacing="compact">
     78      <listitem>
     79        <para>Required patch: <ulink url="&patch-root;/apr-util-&apr-util-version;-openssl-1.1.0-1.patch"/></para>
    7380      </listitem>
    7481    </itemizedlist>
     
    110117    </para>
    111118
    112 <screen><userinput>./configure --prefix=/usr       \
     119<screen><userinput>patch -Np1 -i ../apr-util-&apr-util-version;-openssl-1.1.0-1.patch &amp;&amp;
     120./configure --prefix=/usr       \
    113121            --with-apr=/usr     \
    114122            --with-gdbm=/usr    \
  • general/genlib/libesmtp.xml

    r14bf879 ra4f37269  
    7373    <title>Installation of libESMTP</title>
    7474
     75    <para>Fix a build issue with OpenSSL-1.1.0:</para>
     76
     77<screen><userinput>sed 's@SSL_library_init@SSL_new@g' -i configure.ac &amp;&amp;
     78autoreconf -fi</userinput></screen>
     79
    7580    <para>Install <application>libESMTP</application> by running the following
    7681    commands:</para>
  • general/genlib/nodejs.xml

    r14bf879 ra4f37269  
    108108      <xref linkend="c-ares"/>,
    109109      <xref linkend="icu"/>, and
    110       <xref linkend="openssl"/>
     110      <xref linkend="openssl10"/>
    111111    </para>
    112112
     
    139139    </para>
    140140
    141 <screen><userinput>./configure --prefix=/usr          \
    142             --shared-cares         \
    143             --shared-openssl       \
    144             --shared-zlib          \
    145             --with-intl=system-icu &amp;&amp;
     141<screen><userinput>PKG_CONFIG_PATH=/usr/lib/openssl-1.0/pkgconfig \
     142    ./configure --prefix=/usr                  \
     143                --shared-cares                 \
     144                --shared-openssl               \
     145                --shared-zlib                  \
     146                --with-intl=system-icu         &amp;&amp;
    146147make</userinput></screen>
    147148
  • general/genlib/ptlib.xml

    r14bf879 ra4f37269  
    8080          Required patch:
    8181          <ulink url="&patch-root;/ptlib-&ptlib-version;-bison_fixes-2.patch"/>
     82        </para>
     83      </listitem>
     84      <listitem>
     85        <para>
     86          Required patch:
     87          <ulink url="&patch-root;/ptlib-&ptlib-version;-openssl-1.1.0-1.patch"/>
    8288        </para>
    8389      </listitem>
     
    125131    </para>
    126132
    127 <screen><userinput>patch -Np1 -i ../ptlib-&ptlib-version;-bison_fixes-2.patch &amp;&amp;
     133<screen><userinput>patch -Np1 -i ../ptlib-&ptlib-version;-openssl-1.1.0-1.patch &amp;&amp;
     134patch -Np1 -i ../ptlib-&ptlib-version;-bison_fixes-2.patch &amp;&amp;
    128135
    129136./configure --prefix=/usr &amp;&amp;
  • general/genlib/qca.xml

    r14bf879 ra4f37269  
    7777    <xref linkend="nss"/>,
    7878    <xref linkend="nspr"/>,
    79     <xref linkend="openssl"/>,
     79    <xref linkend="openssl10"/>,
    8080    <xref linkend="p11-kit"/>,
    8181    <xref linkend="doxygen"/>, and
     
    105105cd    build &amp;&amp;
    106106
    107 cmake -DCMAKE_INSTALL_PREFIX=$QT5DIR            \
    108       -DCMAKE_BUILD_TYPE=Release                \
    109       -DQCA_MAN_INSTALL_DIR:PATH=/usr/share/man \
    110       ..                                        &amp;&amp;
     107cmake -DCMAKE_INSTALL_PREFIX=$QT5DIR                             \
     108      -DCMAKE_BUILD_TYPE=Release                                 \
     109      -DQCA_MAN_INSTALL_DIR:PATH=/usr/share/man                  \
     110      -DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0             \
     111      -DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so       \
     112      -DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so \
     113      ..                                                         &amp;&amp;
    111114
    112115make</userinput></screen>
Note: See TracChangeset for help on using the changeset viewer.