2003-08-19 06:44:58 +00:00
|
|
|
<?
|
|
|
|
require_once("docutil.php");
|
|
|
|
page_head("Source code road map");
|
|
|
|
echo "
|
2002-09-10 17:04:05 +00:00
|
|
|
<p>
|
2003-01-14 19:30:21 +00:00
|
|
|
BOINC is distributed via CVS, tarballs compressed with gzip, and Windows
|
|
|
|
zip files.
|
|
|
|
<ul>
|
|
|
|
<li>
|
2003-06-03 16:57:37 +00:00
|
|
|
If installing from CVS, check out the entire CVS tree.
|
2003-01-14 19:30:21 +00:00
|
|
|
<li>
|
|
|
|
If installing on Windows, unzip boinc.zip or boinc.tar.gz,
|
|
|
|
and unzip win_build.zip inside the BOINC directory.
|
|
|
|
<li>
|
|
|
|
If installing on Mac OS X, unzip boinc.zip or boinc.tar.gz,
|
|
|
|
and unstuff mac_build.sit inside the BOINC directory.
|
|
|
|
</ul>
|
2002-08-14 20:31:27 +00:00
|
|
|
|
2003-01-14 19:30:21 +00:00
|
|
|
<p>
|
|
|
|
Unpacking the BOINC source code creates the following directories:
|
2002-08-14 20:31:27 +00:00
|
|
|
<dl>
|
|
|
|
<dt> RSAEuro/
|
2003-10-24 22:18:14 +00:00
|
|
|
<dd> An RSA implementation (included for convenience; not covered
|
|
|
|
under the BOINC public license).
|
2002-08-14 20:31:27 +00:00
|
|
|
<dt> api/
|
2002-09-10 17:04:05 +00:00
|
|
|
<dd> The BOINC API (parts of which are compiled
|
|
|
|
into the core client).
|
2002-08-14 20:31:27 +00:00
|
|
|
<dt> apps/
|
2002-09-10 17:04:05 +00:00
|
|
|
<dd> Some test applications.
|
2002-08-14 20:31:27 +00:00
|
|
|
<dt> client/
|
2002-09-10 17:04:05 +00:00
|
|
|
<dd> The BOINC core client.
|
2002-08-14 20:31:27 +00:00
|
|
|
<dt> client/win/
|
2002-09-10 17:04:05 +00:00
|
|
|
<dd> Core client files particular to the Windows GUI version.
|
2002-08-14 20:31:27 +00:00
|
|
|
<dt> client/mac/
|
2002-09-10 17:04:05 +00:00
|
|
|
<dd> Core client files particular to the Mac GUI version.
|
2002-08-14 20:31:27 +00:00
|
|
|
<dt> db/
|
2002-09-10 17:04:05 +00:00
|
|
|
<dd> The database schema and interface functions.
|
2002-08-14 20:31:27 +00:00
|
|
|
<dt> doc/
|
2002-09-10 17:04:05 +00:00
|
|
|
<dd> HTML documentation files.
|
2002-08-14 20:31:27 +00:00
|
|
|
<dt> html_ops/
|
2002-09-10 17:04:05 +00:00
|
|
|
<dd> PHP files for the operational web interface.
|
2002-08-14 20:31:27 +00:00
|
|
|
<dt> html_user/
|
2002-09-10 17:04:05 +00:00
|
|
|
<dd> PHP files for the participant web interface.
|
2002-08-14 20:31:27 +00:00
|
|
|
<dt> lib/
|
2002-09-10 17:04:05 +00:00
|
|
|
<dd> Code that is shared by more than one component
|
|
|
|
(core client, scheduling server, etc.).
|
2002-08-14 20:31:27 +00:00
|
|
|
<dt> sched/
|
2002-09-10 17:04:05 +00:00
|
|
|
<dd> The scheduling server, feeder, and file upload handler.
|
2002-08-14 20:31:27 +00:00
|
|
|
<dt> sched_fcgi/
|
2002-09-10 17:04:05 +00:00
|
|
|
<dd> Separate directory for compiling the server
|
|
|
|
and file upload handler as Fast CGI programs.
|
2002-08-14 20:31:27 +00:00
|
|
|
<dt> test/
|
2002-09-10 17:04:05 +00:00
|
|
|
<dd> Test scripts.
|
2002-08-14 20:31:27 +00:00
|
|
|
<dt> tools/
|
2002-09-10 17:04:05 +00:00
|
|
|
<dd> Operational utility programs.
|
2002-08-14 20:31:27 +00:00
|
|
|
</dl>
|
2003-01-14 19:30:21 +00:00
|
|
|
<p>
|
|
|
|
On UNIX systems, the BOINC software (both server and client)
|
|
|
|
can be built by typing
|
|
|
|
<pre>
|
2003-06-03 16:57:37 +00:00
|
|
|
./configure
|
2003-01-14 19:30:21 +00:00
|
|
|
make
|
|
|
|
</pre>
|
2003-06-08 10:46:19 +00:00
|
|
|
in the top directory. Automatic tests can be run using
|
|
|
|
<pre>
|
|
|
|
make check
|
|
|
|
</pre>
|
2003-08-19 06:44:58 +00:00
|
|
|
";
|
|
|
|
page_tail();
|
|
|
|
?>
|