Changeset bfa1248
- Timestamp:
- 02/17/2012 01:32:38 PM (11 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 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, ken/inkscape-core-mods, krejzi/svn, lazarus, nosym, perl-modules, plabs/python-mods, qt5new, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/soup3, xry111/test-20220226
- Children:
- 30e5181
- Parents:
- 7e1df8f9
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
general/genlib/pth.xml
r7e1df8f9 rbfa1248 5 5 %general-entities; 6 6 7 <!ENTITY pth-download-http "http://ftp.gnu.org/gnu/pth/pth-&pth-version;.tar.gz"> 8 <!ENTITY pth-download-ftp "ftp://ftp.gnu.org/gnu/pth/pth-&pth-version;.tar.gz"> 7 <!ENTITY pth-download-http 8 "http://ftp.gnu.org/gnu/pth/pth-&pth-version;.tar.gz"> 9 <!ENTITY pth-download-ftp 10 "ftp://ftp.gnu.org/gnu/pth/pth-&pth-version;.tar.gz"> 9 11 <!ENTITY pth-md5sum "9cb4a25331a4c4db866a31cbe507c793"> 10 12 <!ENTITY pth-size "652 KB"> … … 63 65 <para condition="html" role="usernotes">User Notes: 64 66 <ulink url="&blfs-wiki;/pth"/></para> 65 66 67 </sect2> 67 68 … … 79 80 following commands:</para> 80 81 81 <screen><userinput>./configure --prefix=/usr && 82 <screen><userinput>sed -i 's#$(LOBJS): Makefile#$(LOBJS): pth_p.h Makefile#' Makefile.in && 83 ./configure --prefix=/usr --disable-static --mandir=/usr/share/man && 82 84 make</userinput></screen> 83 85 84 <para>To test the results, issue: <command>make check</command>.</para>86 <para>To test the results, issue: <command>make test</command>.</para> 85 87 86 88 <para>Now, as the <systemitem class="username">root</systemitem> … … 91 93 install -v -m644 README PORTING SUPPORT TESTS \ 92 94 /usr/share/doc/pth-&pth-version;</userinput></screen> 95 </sect2> 93 96 97 <sect2 role="commands"> 98 <title>Command Explanations</title> 99 100 <para><command>sed -i 's#$(LOBJS) ...</command>: This sed fixes a race 101 condition in the Makefile. It allows you to run <command>make</command> with 102 multiple jobs (eg, <command>make -j4</command>) <!-- how ironic that a 103 package for using multiple threads has this bug in its Makefile-->.</para> 104 105 <para><option>--disable-static</option>: This option stops it compiling a 106 static version of the library.</para> 107 108 <para><option>--mandir=/usr/share/man</option>: This option puts the man 109 pages in /usr/share/man and not /usr/man.</para> 94 110 </sect2> 95 111 … … 104 120 <seglistitem> 105 121 <seg>pth-config</seg> 106 <seg>libpth. {so,a}</seg>122 <seg>libpth.so</seg> 107 123 <seg>/usr/share/doc/pth-&pth-version;</seg> 108 124 </seglistitem> … … 128 144 129 145 <varlistentry id="libpth"> 130 <term><filename class= 'libraryfile'>libpth.{so,a}</filename></term>146 <term><filename class="libraryfile">libpth.so</filename></term> 131 147 <listitem> 132 148 <para>contains the API functions used by the GNU Portable Threads 133 149 Library.</para> 134 150 <indexterm zone="pth libpth"> 135 <primary sortas="c-libpth">libpth. {so,a}</primary>151 <primary sortas="c-libpth">libpth.so</primary> 136 152 </indexterm> 137 153 </listitem> 138 154 </varlistentry> 139 140 155 </variablelist> 141 142 156 </sect2> 143 144 157 </sect1> -
template/README
r7e1df8f9 rbfa1248 6 6 Makes a copy of the file and edit as needed. 7 7 8 don't forget to: 9 10 svn propset svn:keywords "LastChangedBy Date" path/to/new/page.xml
Note:
See TracChangeset
for help on using the changeset viewer.