Skip to content

Commit 92c05fd

Browse files
committed
1.34.0 => 1.34.1
[SVN r38196]
1 parent 36579ce commit 92c05fd

File tree

3 files changed

+26
-26
lines changed

3 files changed

+26
-26
lines changed

more/getting_started/detail/release-variables.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
.. This file contains all the definitions that need to be updated
66
.. for each new release of Boost.
77
8-
.. |boost-version-number| replace:: 1.34.0
9-
.. |boost_ver| replace:: ``boost_1_34_0``
10-
.. |boost_ver-bold| replace:: **boost_1_34_0**
8+
.. |boost-version-number| replace:: 1.34.1
9+
.. |boost_ver| replace:: ``boost_1_34_1``
10+
.. |boost_ver-bold| replace:: **boost_1_34_1**
1111

1212
.. _sf-download: http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041

more/getting_started/unix-variants.html

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ <h1><a class="toc-backref" href="#id18">1&nbsp;&nbsp;&nbsp;Get Boost</a></h1>
6363
<p>The most reliable way to get a copy of Boost is to download a
6464
distribution from <a class="reference external" href="http://sourceforge.net/project/showfiles.php?group_id=7586&amp;package_id=8041">SourceForge</a>:</p>
6565
<ol class="arabic">
66-
<li><p class="first">Download <a class="reference external" href="http://sourceforge.net/project/showfiles.php?group_id=7586&amp;package_id=8041"><tt class="docutils literal"><span class="pre">boost_1_34_0</span></tt><tt class="docutils literal"><span class="pre">.tar.bz2</span></tt></a>.</p>
66+
<li><p class="first">Download <a class="reference external" href="http://sourceforge.net/project/showfiles.php?group_id=7586&amp;package_id=8041"><tt class="docutils literal"><span class="pre">boost_1_34_1</span></tt><tt class="docutils literal"><span class="pre">.tar.bz2</span></tt></a>.</p>
6767
</li>
6868
<li><p class="first">In the directory where you want to put the Boost installation,
6969
execute</p>
7070
<pre class="literal-block">
71-
tar --bzip2 -xf <em>/path/to/</em><tt class="docutils literal"><span class="pre">boost_1_34_0</span></tt>.tar.bz2
71+
tar --bzip2 -xf <em>/path/to/</em><tt class="docutils literal"><span class="pre">boost_1_34_1</span></tt>.tar.bz2
7272
</pre>
7373
</li>
7474
</ol>
@@ -91,7 +91,7 @@ <h1><a class="toc-backref" href="#id18">1&nbsp;&nbsp;&nbsp;Get Boost</a></h1>
9191
<h1><a class="toc-backref" href="#id19">2&nbsp;&nbsp;&nbsp;The Boost Distribution</a></h1>
9292
<p>This is a sketch of the resulting directory structure:</p>
9393
<pre class="literal-block">
94-
<strong>boost_1_34_0</strong><strong>/</strong> .................<em>The “boost root directory”</em>
94+
<strong>boost_1_34_1</strong><strong>/</strong> .................<em>The “boost root directory”</em>
9595
<strong>index.htm</strong> .........<em>A copy of www.boost.org starts here</em>
9696
<strong>boost</strong><strong>/</strong> .........................<em>All Boost Header files</em>
9797
<tt class="docutils literal"> </tt>
@@ -136,7 +136,7 @@ <h1><a class="toc-backref" href="#id19">2&nbsp;&nbsp;&nbsp;The Boost Distributio
136136
</div>
137137
<p>It's important to note the following:</p>
138138
<ol class="arabic" id="boost-root-directory">
139-
<li><p class="first">The path to the <strong>boost root directory</strong> (often <tt class="docutils literal"><span class="pre">/usr/local/</span></tt><tt class="docutils literal"><span class="pre">boost_1_34_0</span></tt>) is
139+
<li><p class="first">The path to the <strong>boost root directory</strong> (often <tt class="docutils literal"><span class="pre">/usr/local/</span></tt><tt class="docutils literal"><span class="pre">boost_1_34_1</span></tt>) is
140140
sometimes referred to as <tt class="docutils literal"><span class="pre">$BOOST_ROOT</span></tt> in documentation and
141141
mailing lists .</p>
142142
</li>
@@ -230,7 +230,7 @@ <h1><a class="toc-backref" href="#id21">4&nbsp;&nbsp;&nbsp;Build a Simple Progra
230230
<p>Now, in the directory where you saved <tt class="docutils literal"><span class="pre">example.cpp</span></tt>, issue the
231231
following command:</p>
232232
<pre class="literal-block">
233-
c++ -I <em>path/to/</em><tt class="docutils literal"><span class="pre">boost_1_34_0</span></tt> example.cpp -o example
233+
c++ -I <em>path/to/</em><tt class="docutils literal"><span class="pre">boost_1_34_1</span></tt> example.cpp -o example
234234
</pre>
235235
<p>To test the result, type:</p>
236236
<pre class="literal-block">
@@ -261,7 +261,7 @@ <h2><a class="toc-backref" href="#id24">5.1&nbsp;&nbsp;&nbsp;Easy Build and Inst
261261
<p>Issue the following commands in the shell (don't type <tt class="docutils literal"><span class="pre">$</span></tt>; that
262262
represents the shell's prompt):</p>
263263
<pre class="literal-block">
264-
<strong>$</strong> cd <em>path/to/</em><tt class="docutils literal"><span class="pre">boost_1_34_0</span></tt>
264+
<strong>$</strong> cd <em>path/to/</em><tt class="docutils literal"><span class="pre">boost_1_34_1</span></tt>
265265
<strong>$</strong> ./configure --help
266266
</pre>
267267
<p>Select your configuration options and invoke <tt class="docutils literal"><span class="pre">./configure</span></tt> again
@@ -425,7 +425,7 @@ <h3><a class="toc-backref" href="#id29">5.2.4&nbsp;&nbsp;&nbsp;Invoke <tt class=
425425
</pre>
426426
<p>For example, your session might look like this:</p>
427427
<pre class="literal-block">
428-
$ cd ~/<tt class="docutils literal"><span class="pre">boost_1_34_0</span></tt>
428+
$ cd ~/<tt class="docutils literal"><span class="pre">boost_1_34_1</span></tt>
429429
$ bjam <strong>--build-dir=</strong>/tmp/build-boost <strong>--toolset=</strong>gcc stage
430430
</pre>
431431
<!-- Copyright David Abrahams 2006. Distributed under the Boost -->
@@ -533,14 +533,14 @@ <h1><a class="toc-backref" href="#id32">6&nbsp;&nbsp;&nbsp;Link Your Program to
533533
<ol class="upperalpha">
534534
<li><p class="first">You can specify the full path to each library:</p>
535535
<pre class="literal-block">
536-
$ c++ -I <em>path/to/</em><tt class="docutils literal"><span class="pre">boost_1_34_0</span></tt> example.cpp -o example <strong>\</strong>
536+
$ c++ -I <em>path/to/</em><tt class="docutils literal"><span class="pre">boost_1_34_1</span></tt> example.cpp -o example <strong>\</strong>
537537
<strong>~/boost/lib/libboost_regex-gcc34-mt-d-1_34.a</strong>
538538
</pre>
539539
</li>
540540
<li><p class="first">You can separately specify a directory to search (with <tt class="docutils literal"><span class="pre">-L</span></tt><em>directory</em>) and a library name to search for (with <tt class="docutils literal"><span class="pre">-l</span></tt><em>library</em>,<a class="footnote-reference" href="#lowercase-l" id="id12"><sup>2</sup></a> dropping the filename's leading <tt class="docutils literal"><span class="pre">lib</span></tt> and trailing
541541
suffix (<tt class="docutils literal"><span class="pre">.a</span></tt> in this case):</p>
542542
<pre class="literal-block">
543-
$ c++ -I <em>path/to/</em><tt class="docutils literal"><span class="pre">boost_1_34_0</span></tt> example.cpp -o example <strong>\</strong>
543+
$ c++ -I <em>path/to/</em><tt class="docutils literal"><span class="pre">boost_1_34_1</span></tt> example.cpp -o example <strong>\</strong>
544544
<strong>-L~/boost/lib/ -lboost_regex-gcc34-mt-d-1_34</strong>
545545
</pre>
546546
<p>As you can see, this method is just as terse as method A for one

more/getting_started/windows.html

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ <h1><a class="toc-backref" href="#id23">1&nbsp;&nbsp;&nbsp;Get Boost</a></h1>
6969
install the <a class="reference external" href="../../libs/regex/index.html">Boost.Regex</a> binaries when given the option.</p>
7070
<p>If you're using an earlier version of Visual Studio or some other
7171
compiler, or if you prefer to build everything yourself, you can
72-
download <a class="reference external" href="http://sourceforge.net/project/showfiles.php?group_id=7586&amp;package_id=8041"><tt class="docutils literal"><span class="pre">boost_1_34_0</span></tt><tt class="docutils literal"><span class="pre">.exe</span></tt></a> and run it to install a complete Boost
72+
download <a class="reference external" href="http://sourceforge.net/project/showfiles.php?group_id=7586&amp;package_id=8041"><tt class="docutils literal"><span class="pre">boost_1_34_1</span></tt><tt class="docutils literal"><span class="pre">.exe</span></tt></a> and run it to install a complete Boost
7373
distribution.<a class="footnote-reference" href="#zip" id="id2"><sup>1</sup></a></p>
7474
<!-- Copyright David Abrahams 2006. Distributed under the Boost -->
7575
<!-- Software License, Version 1.0. (See accompanying -->
@@ -79,7 +79,7 @@ <h1><a class="toc-backref" href="#id23">1&nbsp;&nbsp;&nbsp;Get Boost</a></h1>
7979
<h1><a class="toc-backref" href="#id24">2&nbsp;&nbsp;&nbsp;The Boost Distribution</a></h1>
8080
<p>This is a sketch of the resulting directory structure:</p>
8181
<pre class="literal-block">
82-
<strong>boost_1_34_0</strong><strong>\</strong> .................<em>The “boost root directory”</em>
82+
<strong>boost_1_34_1</strong><strong>\</strong> .................<em>The “boost root directory”</em>
8383
<strong>index.htm</strong> .........<em>A copy of www.boost.org starts here</em>
8484
<strong>boost</strong><strong>\</strong> .........................<em>All Boost Header files</em>
8585
<strong>lib</strong><strong>\</strong> .....................<em>precompiled library binaries</em>
@@ -124,7 +124,7 @@ <h1><a class="toc-backref" href="#id24">2&nbsp;&nbsp;&nbsp;The Boost Distributio
124124
</div>
125125
<p>It's important to note the following:</p>
126126
<ol class="arabic" id="boost-root-directory">
127-
<li><p class="first">The path to the <strong>boost root directory</strong> (often <tt class="docutils literal"><span class="pre">C:\Program</span> <span class="pre">Files\boost\</span></tt><tt class="docutils literal"><span class="pre">boost_1_34_0</span></tt>) is
127+
<li><p class="first">The path to the <strong>boost root directory</strong> (often <tt class="docutils literal"><span class="pre">C:\Program</span> <span class="pre">Files\boost\</span></tt><tt class="docutils literal"><span class="pre">boost_1_34_1</span></tt>) is
128128
sometimes referred to as <tt class="docutils literal"><span class="pre">$BOOST_ROOT</span></tt> in documentation and
129129
mailing lists .</p>
130130
</li>
@@ -248,7 +248,7 @@ <h1><a class="toc-backref" href="#id26">4&nbsp;&nbsp;&nbsp;Build a Simple Progra
248248
</pre>
249249
<p>followed by Return. For example,</p>
250250
<pre class="literal-block">
251-
cd <tt class="docutils literal"><span class="pre">C:\Program</span> <span class="pre">Files\boost\</span></tt><tt class="docutils literal"><span class="pre">boost_1_34_0</span></tt>
251+
cd <tt class="docutils literal"><span class="pre">C:\Program</span> <span class="pre">Files\boost\</span></tt><tt class="docutils literal"><span class="pre">boost_1_34_1</span></tt>
252252
</pre>
253253
<p class="last">Long commands can be continued across several lines by typing a
254254
caret (<tt class="docutils literal"><span class="pre">^</span></tt>) at the end of all but the last line. Some examples
@@ -273,7 +273,7 @@ <h1><a class="toc-backref" href="#id26">4&nbsp;&nbsp;&nbsp;Build a Simple Progra
273273
<li><p class="first">In <em>Configuration Properties</em> &gt; <em>C/C++</em> &gt; <em>General</em> &gt; <em>Additional Include
274274
Directories</em>, enter the path to the Boost root directory, for example</p>
275275
<blockquote>
276-
<p><tt class="docutils literal"><span class="pre">C:\Program</span> <span class="pre">Files\boost\</span></tt><tt class="docutils literal"><span class="pre">boost_1_34_0</span></tt></p>
276+
<p><tt class="docutils literal"><span class="pre">C:\Program</span> <span class="pre">Files\boost\</span></tt><tt class="docutils literal"><span class="pre">boost_1_34_1</span></tt></p>
277277
</blockquote>
278278
</li>
279279
<li><p class="first">In <em>Configuration Properties</em> &gt; <em>C/C++</em> &gt; <em>Precompiled Headers</em>, change
@@ -311,7 +311,7 @@ <h2><a class="toc-backref" href="#id28">4.2&nbsp;&nbsp;&nbsp;Or, Build From the
311311
directory</a> to a suitable location for creating some temporary
312312
files and type the following command followed by the Return key:</p>
313313
<pre class="literal-block">
314-
cl /EHsc /I <em>path\to\</em><tt class="docutils literal"><span class="pre">boost_1_34_0</span></tt> <em>path</em>\<em>to</em>\example.cpp
314+
cl /EHsc /I <em>path\to\</em><tt class="docutils literal"><span class="pre">boost_1_34_1</span></tt> <em>path</em>\<em>to</em>\example.cpp
315315
</pre>
316316
<p>To test the result, type:</p>
317317
<pre class="literal-block">
@@ -342,7 +342,7 @@ <h1><a class="toc-backref" href="#id30">5&nbsp;&nbsp;&nbsp;Prepare to Use a Boos
342342
<h2><a class="toc-backref" href="#id31">5.1&nbsp;&nbsp;&nbsp;Install Visual Studio (2005 or .NET 2003) Binaries</a></h2>
343343
<p>The <a class="reference external" href="http://www.boost-consulting.com/download/windows">installer</a> supplied by Boost Consulting will download and
344344
install pre-compiled binaries into the <tt class="docutils literal"><span class="pre">lib\</span></tt> subdirectory of the
345-
boost root, typically <tt class="docutils literal"><span class="pre">C:\Program</span> <span class="pre">Files\boost\</span></tt><tt class="docutils literal"><span class="pre">boost_1_34_0</span></tt><tt class="docutils literal"><span class="pre">\lib\</span></tt>. If you installed
345+
boost root, typically <tt class="docutils literal"><span class="pre">C:\Program</span> <span class="pre">Files\boost\</span></tt><tt class="docutils literal"><span class="pre">boost_1_34_1</span></tt><tt class="docutils literal"><span class="pre">\lib\</span></tt>. If you installed
346346
all variants of the <a class="reference external" href="../../libs/regex/index.html">Boost.Regex</a> binary, you're done with this
347347
step. Otherwise, please run the installer again and install them
348348
now.</p>
@@ -491,8 +491,8 @@ <h3><a class="toc-backref" href="#id36">5.2.4&nbsp;&nbsp;&nbsp;Invoke <tt class=
491491
</pre>
492492
<p>For example, your session might look like this:<a class="footnote-reference" href="#continuation" id="id13"><sup>4</sup></a></p>
493493
<pre class="literal-block">
494-
C:\WINDOWS&gt; cd <tt class="docutils literal"><span class="pre">C:\Program</span> <span class="pre">Files\boost\</span></tt><tt class="docutils literal"><span class="pre">boost_1_34_0</span></tt>
495-
<tt class="docutils literal"><span class="pre">C:\Program</span> <span class="pre">Files\boost\</span></tt><tt class="docutils literal"><span class="pre">boost_1_34_0</span></tt>&gt; bjam <strong>^</strong>
494+
C:\WINDOWS&gt; cd <tt class="docutils literal"><span class="pre">C:\Program</span> <span class="pre">Files\boost\</span></tt><tt class="docutils literal"><span class="pre">boost_1_34_1</span></tt>
495+
<tt class="docutils literal"><span class="pre">C:\Program</span> <span class="pre">Files\boost\</span></tt><tt class="docutils literal"><span class="pre">boost_1_34_1</span></tt>&gt; bjam <strong>^</strong>
496496
More? <strong>--build-dir=</strong>C:\temp\build-boost <strong>^</strong>
497497
More? <strong>--toolset=</strong>msvc stage
498498
</pre>
@@ -618,7 +618,7 @@ <h2><a class="toc-backref" href="#id40">6.1&nbsp;&nbsp;&nbsp;Link From Within th
618618
select <em>Properties</em> from the resulting pop-up menu</li>
619619
<li>In <em>Configuration Properties</em> &gt; <em>Linker</em> &gt; <em>Additional Library
620620
Directories</em>, enter the path to the Boost binaries,
621-
e.g. <tt class="docutils literal"><span class="pre">C:\Program</span> <span class="pre">Files\boost\</span></tt><tt class="docutils literal"><span class="pre">boost_1_34_0</span></tt><tt class="docutils literal"><span class="pre">\lib\</span></tt>.</li>
621+
e.g. <tt class="docutils literal"><span class="pre">C:\Program</span> <span class="pre">Files\boost\</span></tt><tt class="docutils literal"><span class="pre">boost_1_34_1</span></tt><tt class="docutils literal"><span class="pre">\lib\</span></tt>.</li>
622622
<li>From the <em>Build</em> menu, select <em>Build Solution</em>.</li>
623623
</ol>
624624
<p><a class="reference internal" href="#test-your-program"><em>skip to the next step</em></a></p>
@@ -628,10 +628,10 @@ <h2><a class="toc-backref" href="#id41">6.2&nbsp;&nbsp;&nbsp;Or, Link From the C
628628
<p>For example, we can compile and link the above program from the
629629
Visual C++ command-line by simply adding the <strong>bold</strong> text below to
630630
the command line we used earlier, assuming your Boost binaries are
631-
in <tt class="docutils literal"><span class="pre">C:\Program</span> <span class="pre">Files\boost\</span></tt><tt class="docutils literal"><span class="pre">boost_1_34_0</span></tt><tt class="docutils literal"><span class="pre">\lib</span></tt>:</p>
631+
in <tt class="docutils literal"><span class="pre">C:\Program</span> <span class="pre">Files\boost\</span></tt><tt class="docutils literal"><span class="pre">boost_1_34_1</span></tt><tt class="docutils literal"><span class="pre">\lib</span></tt>:</p>
632632
<pre class="literal-block">
633-
cl /EHsc /I <em>path\to\</em><tt class="docutils literal"><span class="pre">boost_1_34_0</span></tt> example.cpp <strong>^</strong>
634-
<strong>/link /LIBPATH:</strong> <strong>C:\Program Files\boost\</strong><strong>boost_1_34_0</strong><strong>\lib</strong>
633+
cl /EHsc /I <em>path\to\</em><tt class="docutils literal"><span class="pre">boost_1_34_1</span></tt> example.cpp <strong>^</strong>
634+
<strong>/link /LIBPATH:</strong> <strong>C:\Program Files\boost\</strong><strong>boost_1_34_1</strong><strong>\lib</strong>
635635
</pre>
636636
</div>
637637
<div class="section" id="library-naming">
@@ -786,7 +786,7 @@ <h1><a class="toc-backref" href="#id44">7&nbsp;&nbsp;&nbsp;Conclusion and Furthe
786786
<colgroup><col class="label" /><col /></colgroup>
787787
<tbody valign="top">
788788
<tr><td class="label"><a class="fn-backref" href="#id2">[1]</a></td><td>If you prefer not to download executable programs,
789-
download <a class="reference external" href="http://sourceforge.net/project/showfiles.php?group_id=7586&amp;package_id=8041"><tt class="docutils literal"><span class="pre">boost_1_34_0</span></tt><tt class="docutils literal"><span class="pre">.zip</span></tt></a> and use an external tool to decompress
789+
download <a class="reference external" href="http://sourceforge.net/project/showfiles.php?group_id=7586&amp;package_id=8041"><tt class="docutils literal"><span class="pre">boost_1_34_1</span></tt><tt class="docutils literal"><span class="pre">.zip</span></tt></a> and use an external tool to decompress
790790
it. We don't recommend using Windows' built-in decompression as
791791
it can be painfully slow for large archives.</td></tr>
792792
</tbody>

0 commit comments

Comments
 (0)