Move files into new v2 + v3 directory structure
[SVN r62653]
This commit is contained in:
parent
956d6df7a5
commit
fa515c07f5
@ -1,37 +0,0 @@
|
||||
@echo off
|
||||
rem Change to version 2
|
||||
|
||||
rem Copyright Beman Dawes 2010
|
||||
|
||||
rem Distributed under the Boost Software License, Version 1.0.
|
||||
rem See http://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
echo Change to version 2
|
||||
|
||||
if exist src\unique_path.cpp goto versionok
|
||||
echo Error: version 2 already in use
|
||||
goto done
|
||||
:versionok
|
||||
|
||||
echo Deleting v3 files...
|
||||
|
||||
del ..\..\boost\filesystem.hpp index.html
|
||||
del /q ..\..\boost\filesystem
|
||||
del /q /s build doc example src test
|
||||
|
||||
echo Copying v2 files...
|
||||
|
||||
xcopy v2\boost\filesystem.hpp ..\..\boost
|
||||
xcopy /i v2\boost\filesystem ..\..\boost\filesystem
|
||||
xcopy v2\libs\index.html .
|
||||
xcopy /i /s v2\libs\build build
|
||||
xcopy /i /s v2\libs\doc doc
|
||||
xcopy /i /s v2\libs\example example
|
||||
xcopy /i /s v2\libs\src src
|
||||
xcopy /i /s v2\libs\test test
|
||||
|
||||
echo Copying complete. Version 2 files now ready to use.
|
||||
|
||||
echo You must now rebuild Boost.Filesystem object libraries.
|
||||
|
||||
:done
|
@ -1,35 +0,0 @@
|
||||
@echo off
|
||||
# Change to version 2
|
||||
|
||||
# Copyright Beman Dawes 2010
|
||||
|
||||
# Distributed under the Boost Software License, Version 1.0.
|
||||
# See http://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
echo Change to version 2
|
||||
|
||||
if [ ! -f "src/unique_path.cpp" ]; then
|
||||
echo Error: version 2 already in use
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo Deleting v3 files...
|
||||
|
||||
rm ../../boost/filesystem.hpp index.html
|
||||
rm -r ../../boost/filesystem
|
||||
rm -r build doc example src test
|
||||
|
||||
echo Copying v2 files...
|
||||
|
||||
cp v2/boost/filesystem.hpp ../../boost
|
||||
cp -r v2/boost/filesystem ../../boost/filesystem
|
||||
cp v2/libs/index.html .
|
||||
cp -r v2/libs/build .
|
||||
cp -r v2/libs/doc .
|
||||
cp -r v2/libs/example .
|
||||
cp -r v2/libs/src .
|
||||
cp -r v2/libs/test .
|
||||
|
||||
echo Copying complete. Version 2 files now ready to use.
|
||||
|
||||
echo You must now rebuild Boost.Filesystem object libraries.
|
@ -1,55 +0,0 @@
|
||||
@echo off
|
||||
rem Change to version 3
|
||||
|
||||
rem Copyright Beman Dawes 2010
|
||||
|
||||
rem Distributed under the Boost Software License, Version 1.0.
|
||||
rem See http://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
echo Change to version 3
|
||||
|
||||
if not exist src\unique_path.cpp goto versionok
|
||||
echo Error: version 3 already in use
|
||||
goto done
|
||||
:versionok
|
||||
|
||||
if exist v2 goto v2copydone
|
||||
|
||||
echo Making a copy of version 2 files...
|
||||
|
||||
md v2
|
||||
pushd v2
|
||||
md boost
|
||||
md libs
|
||||
popd
|
||||
xcopy ..\..\boost\filesystem.hpp v2\boost
|
||||
xcopy /i ..\..\boost\filesystem v2\boost\filesystem
|
||||
xcopy index.html v2\libs
|
||||
xcopy /i /s build v2\libs\build
|
||||
xcopy /i /s doc v2\libs\doc
|
||||
xcopy /i /s example v2\libs\example
|
||||
xcopy /i /s src v2\libs\src
|
||||
xcopy /i /s test v2\libs\test
|
||||
:v2copydone
|
||||
|
||||
echo Deleting v2 files...
|
||||
|
||||
del ..\..\boost\filesystem.hpp index.html
|
||||
del /q ..\..\boost\filesystem
|
||||
del /q /s build doc example src test
|
||||
|
||||
echo Copying v3 files...
|
||||
|
||||
xcopy v3\boost\filesystem.hpp ..\..\boost
|
||||
xcopy /i v3\boost\filesystem ..\..\boost\filesystem
|
||||
xcopy v3\libs\index.html .
|
||||
xcopy /i /s v3\libs\filesystem\build build
|
||||
xcopy /i /s v3\libs\filesystem\doc doc
|
||||
xcopy /i /s v3\libs\filesystem\example example
|
||||
xcopy /i /s v3\libs\filesystem\src src
|
||||
xcopy /i /s v3\libs\filesystem\test test
|
||||
|
||||
echo Copying complete. Version 3 files now ready to use.
|
||||
|
||||
echo You must now rebuild Boost.Filesystem object libraries.
|
||||
:done
|
@ -1,53 +0,0 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# Change to version 3
|
||||
|
||||
# Copyright Beman Dawes 2010
|
||||
|
||||
# Distributed under the Boost Software License, Version 1.0.
|
||||
# See http://www.boost.org/LICENSE_1_0.txt
|
||||
|
||||
echo Change to version 3
|
||||
|
||||
if [ -f "src/unique_path.cpp" ]; then
|
||||
echo Error: version 3 already in use
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ ! -d "v2" ];then
|
||||
echo Making a copy of version 2 files...
|
||||
mkdir v2
|
||||
pushd v2
|
||||
mkdir boost
|
||||
mkdir libs
|
||||
popd
|
||||
cp ../../boost/filesystem.hpp v2/boost
|
||||
cp -r ../../boost/filesystem v2/boost
|
||||
cp index.html v2/libs
|
||||
cp -r build v2/libs
|
||||
cp -r doc v2/libs
|
||||
cp -r example v2/libs
|
||||
cp -r src v2/libs
|
||||
cp -r test v2/libs
|
||||
fi
|
||||
|
||||
echo Deleting v2 files...
|
||||
|
||||
rm ../../boost/filesystem.hpp index.html
|
||||
rm -r ../../boost/filesystem
|
||||
rm -r build doc example src test
|
||||
|
||||
echo Copying v3 files...
|
||||
|
||||
cp v3/boost/filesystem.hpp ../../boost
|
||||
cp -r v3/boost/filesystem ../../boost
|
||||
cp v3/libs/filesystem/index.html .
|
||||
cp -r v3/libs/filesystem/build .
|
||||
cp -r v3/libs/filesystem/doc .
|
||||
cp -r v3/libs/filesystem/example .
|
||||
cp -r v3/libs/filesystem/src .
|
||||
cp -r v3/libs/filesystem/test .
|
||||
|
||||
echo Copying complete. Version 3 files now ready to use.
|
||||
|
||||
echo You must now rebuild Boost.Filesystem object libraries.
|
@ -1,86 +0,0 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
|
||||
<meta name="ProgId" content="FrontPage.Editor.Document">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
|
||||
<title>Dual Version Support</title>
|
||||
<link rel="stylesheet" type="text/css" href="../../doc/html/minimal.css">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<table border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111">
|
||||
<tr>
|
||||
<td width="277">
|
||||
<a href="../../index.htm">
|
||||
<img src="../../boost.png" alt="boost.png (6897 bytes)" align="middle" width="300" height="86" border="0"></a></td>
|
||||
<td align="middle">
|
||||
<font size="7">Filesystem<br>
|
||||
Dual Version Support</font>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
<h2>Version 2 and 3 Dual Support</h2>
|
||||
<p><a href="v3/libs/filesystem/doc/v3.html">Boost.Filesystem Version 3</a> is
|
||||
major revision with many new and improved features, but has breaking changes
|
||||
from Version 2. Most of the breaking changes are in the area of
|
||||
internationalization.</p>
|
||||
<p>During a transition period covering several Boost releases, both version 2 and version 3 will be supported:</p>
|
||||
|
||||
<ul>
|
||||
<li>Both versions 2 and 3 will be included in the Boost distribution.</li>
|
||||
<li>For the Boost 1.44, and longer if necessary, version 2 will be the
|
||||
default.</li>
|
||||
<li>Going forward, version 3 will then become the default.</li>
|
||||
<li>Scripts are provided to determine the version currently in use, and change
|
||||
between versions.</li>
|
||||
</ul>
|
||||
|
||||
<h2>Scripts</h2>
|
||||
|
||||
<p>The scripts for both Windows and Unix-like systems are provided in <code><i>
|
||||
boost-root</i>/libs/filesystem</code>. They must be run from that directory.</p>
|
||||
|
||||
<p><b>Caution:</b> The scripts do not switch object libraries. After switching
|
||||
to a different version, the Filesystem object libraries must be rebuilt.</p>
|
||||
|
||||
<h3>Windows</h3>
|
||||
|
||||
<ul>
|
||||
<li><code><a href="version.bat">version.bat</a></code> - Displays the version
|
||||
number currently in use.</li>
|
||||
<li><code><a href="change_to_v2.bat">change_to_v2.bat</a></code> - Changes
|
||||
version currently in use to version 2.</li>
|
||||
<li><code><a href="change_to_v3.bat">change_to_v3.bat</a></code> - Changes
|
||||
version currently in use to version 3.</li>
|
||||
</ul>
|
||||
|
||||
<h3>Unix-like operating systems</h3>
|
||||
|
||||
<ul>
|
||||
<li><code><a href="version.sh">version.sh</a></code> - Displays the version
|
||||
number currently in use.</li>
|
||||
<li><code><a href="change_to_v2.sh">change_to_v2.sh</a></code> - Changes
|
||||
version currently in use to version 2.</li>
|
||||
<li><code><a href="change_to_v3.sh">change_to_v3.sh</a></code> - Changes
|
||||
version currently in use to version 3.</li>
|
||||
</ul>
|
||||
|
||||
<hr>
|
||||
<p>Revised
|
||||
<!--webbot bot="Timestamp" S-Type="EDITED" S-Format="%d %B, %Y" startspan -->02 June, 2010<!--webbot bot="Timestamp" endspan i-checksum="19840" --></p>
|
||||
|
||||
<p>© Copyright Beman Dawes, 2010</p>
|
||||
<p> Use, modification, and distribution are subject to the Boost Software
|
||||
License, Version 1.0. See <a href="http://www.boost.org/LICENSE_1_0.txt">
|
||||
www.boost.org/LICENSE_1_0.txt</a></p>
|
||||
|
||||
<p> </p>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
Before Width: | Height: | Size: 6.2 KiB After Width: | Height: | Size: 6.2 KiB |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user