Aclocal Problem Building BOINC Server Components

Trying to install the BOINC server software on Ubuntu according to instructions on http://boinc.berkeley.edu/build_system.php I’ve faced a problem. The command ./_autosetup returned with an error at the bottom of the output:

lailai@lailai:~/boinc$ ./_autosetup Bootstrapping configure script and makefiles: aclocal: configure.ac: 473: macro `AM_OPTIONS_WXRC‘ not found in library Something failed …. please check error-message and [...]

BOINC.BOINC API (Short Introduction)

Let me introduce you BIOINC. Berkeley Open Infrastructure for Network Computing. It is a system of applications. It helps scientists to create public-resource computing projects. It supports complicated applications (with high storage and network requirements). PC owners can participate and donate their computing power to many projects simultaneously. PC owners can subscribe constraints on resources they donate. My aim is to show you how easy is to use the benefits of this system. [...]

BOINC Client application ‘Hello, BOINC World!’

BOINC Client application ‘Hello, BOINC World!’ #ifdef _WIN32 #include “boinc_win.h” #endif #include “boinc_api.h” #include “filesys.h” #include “util.h”int main(int argc, char **argv) { char resolved_name[512]; FILE* f; boinc_init(); boinc_resolve_filename(“out”, resolved_name, sizeof(resolved_name)); f = boinc_fopen(resolved_name, “w”); fprintf(f, “Hello, BOINC World!\n”); fclose(f); boinc_finish(0); return 47; }