|
@@ -674,13 +674,32 @@ libexpat1-dev (Required for Metalink support)
|
|
|
</p>
|
|
|
</li>
|
|
|
</ul></div>
|
|
|
-<div class="para"><p>The build process is fairly standard way for *nix programs:</p></div>
|
|
|
+<div class="para"><p>The quickest way to build aria2 is just type following commands:</p></div>
|
|
|
<div class="listingblock">
|
|
|
<div class="content">
|
|
|
<pre><tt>$ ./configure
|
|
|
$ make</tt></pre>
|
|
|
</div></div>
|
|
|
-<div class="para"><p>The executable is aria2c in src directory.</p></div>
|
|
|
+<div class="para"><p>The configure script checks available libraries and enables the features
|
|
|
+as much as possible because all the features are enabled by default.</p></div>
|
|
|
+<div class="para"><p>Since 1.1.0, aria2 checks the certificate of HTTPS servers by default.
|
|
|
+If you build with HTTPS support, I recommend to supply the path to the
|
|
|
+CA bundle file. For example, in Debian the path to CA bundle file is
|
|
|
+<em>/etc/ssl/certs/ca-certificates.crt</em> (in ca-certificates package). This
|
|
|
+may varies depending on the distributions. You can give it to
|
|
|
+configure script using --with-ca-bundle option:</p></div>
|
|
|
+<div class="listingblock">
|
|
|
+<div class="content">
|
|
|
+<pre><tt>$ ./configure --with-ca-bundle='/etc/ssl/certs/ca-certificates.crt'
|
|
|
+$ make</tt></pre>
|
|
|
+</div></div>
|
|
|
+<div class="para"><p>Without --with-ca-bundle option, you will encounter the error when
|
|
|
+accessing HTTPS servers because the certificate cannot be verified
|
|
|
+without CA bundle. In such case, you can specify the CA bundle file
|
|
|
+using aria2's --ca-certificate option. If you don't have CA bundle
|
|
|
+file installed, then the last resort is disable the certificate
|
|
|
+validation using --check-certificate=false.</p></div>
|
|
|
+<div class="para"><p>The executable is <em>aria2c</em> in src directory.</p></div>
|
|
|
<div class="para"><p>aria2 uses CppUnit for automated unit testing. To run run the unit test:</p></div>
|
|
|
<div class="listingblock">
|
|
|
<div class="content">
|
|
@@ -867,7 +886,7 @@ max-upload-limit=40K</tt></pre>
|
|
|
</div>
|
|
|
<div id="footer">
|
|
|
<div id="footer-text">
|
|
|
-Last updated 2008-12-02 01:48:13 JST
|
|
|
+Last updated 2008-12-17 21:33:30 JST
|
|
|
</div>
|
|
|
</div>
|
|
|
</body>
|