Changeset a4f37269 for server


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:
server
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • server/databases/mariadb.xml

    r14bf879 ra4f37269  
    7979    directory after installation.</para></note>
    8080
     81    <bridgehead renderas="sect3">Additional Downloads</bridgehead>
     82    <itemizedlist spacing="compact">
     83      <listitem>
     84        <para>Required patch: <ulink url="&patch-root;/mariadb-&mariadb-version;-openssl-1.1.0-1.patch"/></para>
     85      </listitem>
     86    </itemizedlist>
     87
    8188    <bridgehead renderas="sect3">MariaDB Dependencies</bridgehead>
    8289
     
    146153    </para>
    147154
    148 <screen><userinput>sed -i "s@data/test@\${INSTALL_MYSQLTESTDIR}@g" sql/CMakeLists.txt &amp;&amp;
     155<screen><userinput>patch -Np1 -i ../mariadb-&mariadb-version;-openssl-1.1.0-1.patch   &amp;&amp;
     156sed -i "s@data/test@\${INSTALL_MYSQLTESTDIR}@g" sql/CMakeLists.txt &amp;&amp;
    149157
    150158mkdir build &amp;&amp;
  • server/mail/sendmail.xml

    r14bf879 ra4f37269  
    6868    <bridgehead renderas="sect4">Recommended</bridgehead>
    6969    <para role="recommended">
    70       <xref linkend="openssl"/> and
     70      <xref linkend="openssl10"/> and
    7171      <xref linkend="cyrus-sasl"/>
    7272    </para>
     
    107107<screen><userinput>cat &gt;&gt; devtools/Site/site.config.m4 &lt;&lt; "EOF"
    108108<literal>APPENDDEF(`confENVDEF',`-DSTARTTLS -DSASL -DLDAPMAP')
    109 APPENDDEF(`confLIBS', `-lssl -lcrypto -lsasl2 -lldap -llber -ldb')
    110 APPENDDEF(`confINCDIRS', `-I/usr/include/sasl')</literal>
     109APPENDDEF(`confLIBS', `-L/usr/lib/openssl-1.0 -lssl -lcrypto -lsasl2 -lldap -llber -ldb')
     110APPENDDEF(`confINCDIRS', `-I/usr/include/sasl -I/usr/include/openssl-1.0')</literal>
    111111EOF</userinput></screen>
    112112
  • server/major/apache.xml

    r14bf879 ra4f37269  
    8080          <ulink url="&patch-root;/httpd-&apache-version;-blfs_layout-1.patch"/>
    8181        </para>
     82      </listitem>
     83      <listitem>
     84        <para>Required patch: <ulink url="&patch-root;/httpd-&apache-version;-openssl-1.1.0-1.patch"/></para>
    8285      </listitem>
    8386    </itemizedlist>
     
    135138    </para>
    136139
    137 <screen><userinput>patch -Np1 -i ../httpd-&apache-version;-blfs_layout-1.patch           &amp;&amp;
    138 
    139 sed '/dir.*CFG_PREFIX/s@^@#@' -i support/apxs.in            &amp;&amp;
    140 
    141 ./configure --enable-authnz-fcgi                            \
    142             --enable-layout=BLFS                            \
    143             --enable-mods-shared="all cgi"                  \
    144             --enable-mpms-shared=all                        \
    145             --enable-suexec=shared                          \
    146             --with-apr=/usr/bin/apr-1-config                \
    147             --with-apr-util=/usr/bin/apu-1-config           \
    148             --with-suexec-bin=/usr/lib/httpd/suexec         \
    149             --with-suexec-caller=apache                     \
    150             --with-suexec-docroot=/srv/www                  \
    151             --with-suexec-logfile=/var/log/httpd/suexec.log \
    152             --with-suexec-uidmin=100                        \
    153             --with-suexec-userdir=public_html               &amp;&amp;
     140<screen><userinput>
     141patch -Np1 -i ../httpd-&apache-version;-blfs_layout-1.patch   &amp;&amp;
     142patch -Np1 -i ../httpd-&apache-version;-openssl-1.1.0-1.patch &amp;&amp;
     143
     144sed '/dir.*CFG_PREFIX/s@^@#@' -i support/apxs.in              &amp;&amp;
     145
     146./configure --enable-authnz-fcgi                              \
     147            --enable-layout=BLFS                              \
     148            --enable-mods-shared="all cgi"                    \
     149            --enable-mpms-shared=all                          \
     150            --enable-suexec=shared                            \
     151            --with-apr=/usr/bin/apr-1-config                  \
     152            --with-apr-util=/usr/bin/apu-1-config             \
     153            --with-suexec-bin=/usr/lib/httpd/suexec           \
     154            --with-suexec-caller=apache                       \
     155            --with-suexec-docroot=/srv/www                    \
     156            --with-suexec-logfile=/var/log/httpd/suexec.log   \
     157            --with-suexec-uidmin=100                          \
     158            --with-suexec-userdir=public_html                 &amp;&amp;
    154159make</userinput></screen>
    155160
     
    165170    techniques as an unpriviledged user.</para></note>
    166171
    167 <screen role="root"><userinput>make install                                 &amp;&amp;
     172<screen role="root"><userinput>make install  &amp;&amp;
    168173
    169174mv -v /usr/sbin/suexec /usr/lib/httpd/suexec &amp;&amp;
  • server/major/bind.xml

    r14bf879 ra4f37269  
    253253chmod 666 /srv/named/dev/{null,urandom} &amp;&amp;
    254254cp /etc/localtime etc &amp;&amp;
    255 touch /srv/named/managed-keys.bind &amp;&amp;
    256 cp /usr/lib/engines/libgost.so usr/lib/engines</userinput></screen>
     255touch /srv/named/managed-keys.bind</userinput></screen>
    257256
    258257      <para>The <filename>rndc.conf</filename> file contains information for
  • server/other/openldap.xml

    r14bf879 ra4f37269  
    8686    <para role="recommended">
    8787      <xref linkend="cyrus-sasl"/> and
    88       <xref linkend="openssl"/>
     88      <xref linkend="gnutls"/>
    8989    </para>
    9090
     
    9292    <para role="optional">
    9393      <xref linkend="icu"/>,
     94      <xref linkend="openssl"/> (currently broken),
    9495      <xref linkend="pth"/>,
    9596      <xref linkend="unixodbc"/>,
     
    168169    </para>
    169170
     171<!-- restore - -with-tls=openssl after 2.4.45 is released -->
    170172<screen><userinput>patch -Np1 -i ../openldap-&openldap-version;-consolidated-2.patch &amp;&amp;
    171173autoconf &amp;&amp;
     
    177179            --disable-static      \
    178180            --disable-debug       \
    179             --with-tls=openssl    \
     181            --with-tls=gnutls     \
    180182            --with-cyrus-sasl     \
    181183            --enable-dynamic      \
Note: See TracChangeset for help on using the changeset viewer.