Download";
$md = md5_file($path);
if ($xml) {
echo "
$platform
http://boinc.berkeley.edu/$path
$filename
$md
";
} else {
list_item($platform, $dlink, $md);
}
}
function version_end($xml) {
if ($xml) return;
list_end();
}
function show_425($xml=false) {
version_start("4.25", "3 Mar 2005", $xml);
version("Windows", "boinc_4.25_windows_intelx86.exe", $xml);
version("Mac OS X", "boinc_4.25_powerpc-apple-darwin.gz", $xml);
version("Linux/x86", "boinc_4.25_i686-pc-linux-gnu.sh", $xml);
version("Solaris/SPARC", "boinc_4.25_sparc-sun-solaris2.7.sh", $xml);
version_end($xml);
}
function show_424($xml=false) {
version_start("4.24", "23 Feb 2005", $xml);
version("Linux/x86", "boinc_4.24_i686-pc-linux-gnu.sh", $xml);
version_end($xml);
}
function show_423($xml=false) {
version_start("4.23", "21 Feb 2005", $xml);
version("Windows", "boinc_4.23_windows_intelx86.exe", $xml);
version("Linux/x86", "boinc_4.23_i686-pc-linux-gnu.sh", $xml);
version("Solaris/SPARC", "boinc_4.23_sparc-sun-solaris2.7.sh", $xml);
version_end($xml);
}
function show_422($xml=false) {
version_start("4.22", "18 Feb 2005", $xml);
version("Windows", "boinc_4.22_windows_intelx86.exe", $xml);
version_end($xml);
}
function show_421($xml=false) {
version_start("4.21", "11 Feb 2005", $xml);
version("Windows", "boinc_4.21_windows_intelx86.exe", $xml);
version_end($xml);
}
function show_420($xml=false) {
version_start("4.20", "8 Feb 2005", $xml);
version("Windows", "boinc_4.20_windows_intelx86.exe", $xml);
version_end($xml);
}
function show_419($xml=false) {
version_start("4.19", "25 Jan 2005", $xml,
"This version doesn't work with some HTTP proxies.
If you use a proxy and experience problems,
please use version 4.23 or later,
in which this problem is fixed."
);
version("Windows", "boinc_4.19_windows_intelx86.exe", $xml);
version("Linux/x86", "boinc_4.19_i686-pc-linux-gnu.gz", $xml);
version("Mac OS X", "boinc_4.19_powerpc-apple-darwin.gz", $xml);
version("Solaris/SPARC", "boinc_4.19_sparc-sun-solaris2.7.gz", $xml);
version_end($xml);
}
function show_418($xml=false) {
version_start("4.18", "24 Jan 2005", $xml);
version("Windows", "boinc_4.18_windows_intelx86.exe", $xml);
version("Linux/x86", "boinc_4.18_i686-pc-linux-gnu.gz", $xml);
version("Mac OS X", "boinc_4.18_powerpc-apple-darwin.gz", $xml);
version("Solaris/SPARC", "boinc_4.18_sparc-sun-solaris2.7.gz", $xml);
version_end($xml);
}
function show_stable($xml) {
show_419($xml);
}
function show_dev($xml) {
show_425($xml);
}
if ($_GET["no_header"]) {
show_stable(false);
if ($_GET["dev"]) {
show_dev(false);
}
exit();
}
if ($_GET["xml"]) {
header ("Content-Type: text/xml");
echo "
";
echo "\n";
show_stable(true);
echo "\n";
show_dev(true);
echo "\n";
exit();
}
page_head("Download BOINC client software");
echo "
Stable version (recommended)
";
show_stable(false);
echo "
After the download is finished:
- Windows:
open the downloaded file.
This will install BOINC on your computer.
- Macintosh OS X, Unix and Linux:
Use gunzip to uncompress if your browser has not done it for you.
Then chmod +x the executable and run it.
If your computer is not of one of the above types, you can
There are no specific hardware requirements
(CPU speed, memory, disk space, etc.).
However, these factors may limit the amount or type
of work that is sent to your computer.
The Windows version can be customized for
languages other than English
";
echo "
Development versions (latest features, possibly buggy)
";
show_dev(false);
echo "
Get data in XML format.
";
page_tail();
?>