Changeset b9d56ad4
- Timestamp:
- 03/16/2014 09:57:46 PM (11 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 7.10, 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, gimp3, 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/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 70384f2
- Parents:
- ddf46c4
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
general.ent
rddf46c4 rb9d56ad4 161 161 <!ENTITY nss-micro-version "5"> 162 162 <!ENTITY nss-version "3.&nss-minor-version;.&nss-micro-version;"> 163 <!ENTITY openssh-version "6. 5p1">163 <!ENTITY openssh-version "6.6p1"> 164 164 <!ENTITY openssl-version "1.0.1f"> 165 165 <!ENTITY p11-kit-version "0.20.2"> <!-- Even minors only --> … … 168 168 <!ENTITY ssh-askpass-version "&openssh-version;"> 169 169 <!ENTITY stunnel-version "4.56"> 170 <!ENTITY sudo-version "1.8.10 ">170 <!ENTITY sudo-version "1.8.10p1"> 171 171 <!ENTITY tripwire-version "2.4.2.2"> 172 172 … … 236 236 <!ENTITY libassuan-version "2.1.1"> 237 237 <!ENTITY libatasmart-version "0.19"> 238 <!ENTITY libatomic_ops-version "7. 2e">238 <!ENTITY libatomic_ops-version "7.4.0"> 239 239 <!ENTITY libcroco-version "0.6.8"> 240 240 <!ENTITY libdaemon-version "0.14"> -
general/genlib/libatomic_ops.xml
rddf46c4 rb9d56ad4 8 8 "http://www.hpl.hp.com/research/linux/atomic_ops/download/libatomic_ops-&libatomic_ops-version;.tar.gz"> 9 9 <!ENTITY libatomic_ops-download-ftp " "> 10 <!ENTITY libatomic_ops-md5sum "7035692fec4db2659b06485040829e43"> 11 <!ENTITY libatomic_ops-size "244 KB"> 12 <!ENTITY libatomic_ops-buildsize "4.5 MB (additional 0.6 MB for tests)"> 13 <!ENTITY libatomic_ops-time "Less than 0.1 SBU (additional less than 14 0.1 SBU for tests)"> 10 <!ENTITY libatomic_ops-md5sum "59f9a7cc845dcc775e7b7901eb582766"> 11 <!ENTITY libatomic_ops-size "448 KB"> 12 <!ENTITY libatomic_ops-buildsize "5.3 MB (additional 0.9 MB for tests)"> 13 <!ENTITY libatomic_ops-time "less than 0.1 SBU (additional less than 0.1 SBU for tests)"> 15 14 ]> 16 15 … … 90 89 </para> 91 90 92 <screen><userinput>sed -i 's#AM_CONFIG_HEADER#AC_CONFIG_HEADERS#' configure.ac && 93 sed -i 's#AC_PROG_RANLIB#AC_LIBTOOL_DLOPEN\nAC_PROG_LIBTOOL#' configure.ac && 94 sed -i 's#b_L#b_LTL#;s#\.a#.la#g;s#_a_#_la_#' src/Makefile.am && 95 sed -i 's#\.a#.so#g;s#\.\./src/#../src/.libs/#g' tests/Makefile.am && 96 sed -i 's#pkgdata#doc#' doc/Makefile.am && 91 <screen><userinput>sed -i 's#pkgdata#doc#' doc/Makefile.am && 97 92 autoreconf -fi && 98 ./configure --prefix=/usr \ 99 --docdir=/usr/share/doc/libatomic_ops-&libatomic_ops-version; \ 100 --disable-static && 93 ./configure --prefix=/usr \ 94 --enable-shared \ 95 --disable-static \ 96 --docdir=/usr/share/doc/libatomic_ops-&libatomic_ops-version; && 101 97 make</userinput></screen> 102 98 … … 110 106 </para> 111 107 112 <screen role="root"><userinput>make install</userinput></screen> 108 <screen role="root"><userinput>make install && 109 mv -v /usr/share/libatomic_ops/* \ 110 /usr/share/doc/libatomic_ops-&libatomic_ops-version; && 111 rm -vrf /usr/share/libatomic_ops</userinput></screen> 113 112 114 113 </sect2> … … 118 117 119 118 <para> 120 <command>sed -i 's#AM_CONFIG_HEADER ...</command>: This 121 <command>sed</command> fixes building with 122 <application>Automake</application> 1.13. 123 </para> 124 125 <para> 126 <command>sed -i 's#AC_PROG_RANLIB ...</command>: These 127 <command>sed</command>s massage the autotool files so that a shared 128 library is built, the tests pass, and the docs are installed in an 129 appropriate directory. 119 <command>sed -i ...</command>: This <command>sed</command> makes the docs 120 to be installed in an appropriate directory. 130 121 </para> 131 122 132 123 <para> 133 124 <command>autoreconf -fi</command>: This regenerates the 134 <command>configure</command> script and the <filename>Makefile.in</filename> 135 files and installs a missing file. 125 <command>configure</command> script and the 126 <filename>Makefile.in</filename>. 127 </para> 128 129 <para> 130 <parameter>--enable-shared</parameter>: This switch enables building of the 131 <filename class="libraryfile">libatomic_ops</filename> shared libraries. 136 132 </para> 137 133 -
general/prog/ruby.xml
rddf46c4 rb9d56ad4 100 100 </para> 101 101 102 <screen><userinput>./configure --prefix=/usr --docdir=/usr/share/doc/ruby-&ruby-version; --enable-shared && 102 <screen><userinput>sed -i ext/readline/readline.c \ 103 -e "s:(Function \*)readline:(rl_hook_func_t \*)readline:" && 104 ./configure --prefix=/usr \ 105 --enable-shared \ 106 --docdir=/usr/share/doc/ruby-&ruby-version; && 103 107 make</userinput></screen> 104 108 … … 119 123 120 124 <para> 121 <option>--enable-shared</option>: This switch enables building of 125 <command>sed -i ext/readline/readline.c ...</command>: This 126 <command>sed</command> fixes building with 127 <application>Readline</application> 6.x (x>2). 128 </para> 129 130 <para> 131 <parameter>--enable-shared</parameter>: This switch enables building of 122 132 the <filename class="libraryfile">libruby</filename> shared library. 123 133 </para> -
introduction/welcome/changelog.xml
rddf46c4 rb9d56ad4 49 49 <itemizedlist> 50 50 <listitem> 51 <para>[fernando] - Update to libatomic_ops-7.4.0. Fixes 52 <ulink url="&blfs-ticket-root;4812">#4812</ulink>.</para> 53 </listitem> 54 <listitem> 55 <para>[fernando] - Ruby-2.1.1 fails to build with Readline-6.3. 56 Thanks Armin K. Fixes 57 <ulink url="&blfs-ticket-root;4810">#4810</ulink>.</para> 58 </listitem> 59 <listitem> 60 <para>[fernando] - Update to ssh-askpass-6.6p1. Fixes 61 <ulink url="&blfs-ticket-root;4809">#4809</ulink>.</para> 62 </listitem> 63 <listitem> 64 <para>[fernando] - Update to openssh-6.6p1. Fixes 65 <ulink url="&blfs-ticket-root;4807">#4807</ulink>.</para> 66 </listitem> 67 <listitem> 68 <para>[fernando] - Update to sudo-1.8.10p1. Fixes 69 <ulink url="&blfs-ticket-root;4806">#4806</ulink>.</para> 70 </listitem> 71 <listitem> 51 72 <para>[pierre] - Add haveged. Fixes 52 73 <ulink url="&blfs-ticket-root;4682">#4682</ulink>.</para> … … 62 83 <listitem> 63 84 <para>[fernando] - PCRE-8.34: build and security fixes for 64 MariaDB-10.0.9. </para>85 MariaDB-10.0.9. Thanks Bruce Dubbs.</para> 65 86 </listitem> 66 87 </itemizedlist> -
postlfs/security/openssh.xml
rddf46c4 rb9d56ad4 9 9 <!ENTITY openssh-download-ftp 10 10 "ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-&openssh-version;.tar.gz"> 11 <!ENTITY openssh-md5sum " a084e7272b8cbd25afe0f5dce4802fef">11 <!ENTITY openssh-md5sum "3e9800e6bca1fbac0eea4d41baa7f239"> 12 12 <!ENTITY openssh-size "1.3 MB"> 13 13 <!ENTITY openssh-buildsize "32 MB (additional 2 MB if running the tests)"> … … 337 337 <seg> 338 338 /etc/ssh, 339 /usr/lib /openssh,339 /usr/libexec/openssh, 340 340 /usr/share/doc/openssh-&openssh-version;, and 341 341 /var/lib/sshd -
postlfs/security/ssh-askpass.xml
rddf46c4 rb9d56ad4 9 9 <!ENTITY ssh-askpass-download-ftp 10 10 "ftp://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-&ssh-askpass-version;.tar.gz"> 11 <!ENTITY ssh-askpass-md5sum " a084e7272b8cbd25afe0f5dce4802fef">11 <!ENTITY ssh-askpass-md5sum "3e9800e6bca1fbac0eea4d41baa7f239"> 12 12 <!ENTITY ssh-askpass-size "1.3 MB"> 13 13 <!ENTITY ssh-askpass-buildsize "6.4 MB"> … … 105 105 </para> 106 106 107 <screen role="root"><userinput>install -v -d -m755 /usr/lib /openssh/contrib &&108 install -v -m755 gnome-ssh-askpass2 /usr/lib /openssh/contrib &&109 ln -sv -f contrib/gnome-ssh-askpass2 /usr/lib /openssh/ssh-askpass</userinput></screen>107 <screen role="root"><userinput>install -v -d -m755 /usr/libexec/openssh/contrib && 108 install -v -m755 gnome-ssh-askpass2 /usr/libexec/openssh/contrib && 109 ln -sv -f contrib/gnome-ssh-askpass2 /usr/libexec/openssh/ssh-askpass</userinput></screen> 110 110 111 111 <para> 112 The use of /usr/lib /openssh/contrib and a symlink is justified by the112 The use of /usr/libexec/openssh/contrib and a symlink is justified by the 113 113 eventual necessity of a different program for that service. 114 114 </para> … … 129 129 <screen role="root"><userinput>cat >> /etc/sudo.conf << "EOF" && 130 130 <literal># Path to askpass helper program 131 Path askpass /usr/lib /openssh/ssh-askpass</literal>131 Path askpass /usr/libexec/openssh/ssh-askpass</literal> 132 132 EOF 133 133 chmod -v 0644 /etc/sudo.conf</userinput></screen> … … 161 161 </seg> 162 162 <seg> 163 /usr/lib /openssh/contrib163 /usr/libexec/openssh/contrib 164 164 </seg> 165 165 </seglistitem> -
postlfs/security/sudo.xml
rddf46c4 rb9d56ad4 7 7 <!ENTITY sudo-download-http "http://www.sudo.ws/sudo/dist/sudo-&sudo-version;.tar.gz"> 8 8 <!ENTITY sudo-download-ftp "ftp://ftp.sudo.ws/pub/sudo/sudo-&sudo-version;.tar.gz"> 9 <!ENTITY sudo-md5sum " 954d64906c3f6e2436f33445a049c58b">9 <!ENTITY sudo-md5sum "1d9c2bc5aaf02608343d17b9a666e8e1"> 10 10 <!ENTITY sudo-size "2.2 MB"> 11 11 <!ENTITY sudo-buildsize "25 MB (additional 1 MB for tests)"> 12 <!ENTITY sudo-time "0. 4SBU">12 <!ENTITY sudo-time "0.5 SBU"> 13 13 ]> 14 14 … … 101 101 </para> 102 102 103 <screen><userinput>./configure --prefix=/usr \ 104 --docdir=/usr/share/doc/sudo-&sudo-version; \ 105 --libexecdir=/usr/lib/sudo \ 106 --with-all-insults \ 107 --with-env-editor \ 103 <screen><userinput>./configure --prefix=/usr \ 104 --libexecdir=/usr/lib/sudo \ 105 --with-all-insults \ 106 --with-env-editor \ 107 --disable-static \ 108 --docdir=/usr/share/doc/sudo-&sudo-version; \ 108 109 --with-passprompt="[sudo] password for %p" && 109 110 make</userinput></screen> … … 144 145 <parameter>--with-passprompt</parameter>: This switch sets the prompt. 145 146 </para> 147 148 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 149 href="../../xincludes/static-libraries.xml"/> 146 150 147 151 <note>
Note:
See TracChangeset
for help on using the changeset viewer.