*** empty log message ***
This commit is contained in:
parent
fac783b4d8
commit
e801435223
|
@ -185,7 +185,8 @@ Also, make sure the paths are correct in the different environments. In cygwin,
|
|||
<tt class="literal"><span class="pre">/cygdrive/c/boost_1_31_0</span></tt>). In the windows environment, they should have the typical
|
||||
windows format (<tt class="literal"><span class="pre">c:/boost_1_31_0</span></tt>).</p>
|
||||
<p>If you're building in developer studio, you may have to set the compiler options
|
||||
"force conformance in for loop scope" and "treat wchar_t as built-in type" to Yes.</p>
|
||||
"force conformance in for loop scope", "treat wchar_t as built-in type" and
|
||||
"Enable Run-Time Type Info" to Yes.</p>
|
||||
<p>If you're building in developer studio 6, you will probably have to use the previous
|
||||
version of boost, <a class="reference" href="http://sourceforge.net/project/showfiles.php?group_id=7586&package_id=8041&release_id=178835">boost 1.30.2</a>. And you'll definately have to use the latest service
|
||||
pack (sp5).</p>
|
||||
|
|
|
@ -137,7 +137,8 @@ Also, make sure the paths are correct in the different environments. In cygwin,
|
|||
windows format (``c:/boost_1_31_0``).
|
||||
|
||||
If you're building in developer studio, you may have to set the compiler options
|
||||
"force conformance in for loop scope" and "treat wchar_t as built-in type" to Yes.
|
||||
"force conformance in for loop scope", "treat wchar_t as built-in type" and
|
||||
"Enable Run-Time Type Info" to Yes.
|
||||
|
||||
If you're building in developer studio 6, you will probably have to use the previous
|
||||
version of boost, `boost 1.30.2`__. And you'll definately have to use the latest service
|
||||
|
|
|
@ -4,7 +4,7 @@ exe client_test
|
|||
: client_test.cpp
|
||||
..//torrent
|
||||
:
|
||||
<threading>multi
|
||||
# <threading>multi
|
||||
: debug release
|
||||
;
|
||||
|
||||
|
@ -13,7 +13,7 @@ exe simple_client
|
|||
: simple_client.cpp
|
||||
..//torrent
|
||||
:
|
||||
<threading>multi
|
||||
# <threading>multi
|
||||
: debug release
|
||||
;
|
||||
|
||||
|
@ -22,7 +22,7 @@ exe dump_torrent
|
|||
: dump_torrent.cpp
|
||||
..//torrent
|
||||
:
|
||||
<threading>multi
|
||||
# <threading>multi
|
||||
: debug release
|
||||
;
|
||||
|
||||
|
|
|
@ -247,7 +247,8 @@ int main(int argc, char* argv[])
|
|||
|
||||
ses.set_upload_rate_limit(100000);
|
||||
ses.set_http_settings(settings);
|
||||
ses.set_severity_level(alert::debug);
|
||||
// ses.set_severity_level(alert::debug);
|
||||
ses.set_severity_level(alert::info);
|
||||
|
||||
for (int i = 0; i < argc-1; ++i)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue