diff --git a/checkin_notes b/checkin_notes index f00a4f1da4..2142b3badd 100755 --- a/checkin_notes +++ b/checkin_notes @@ -27309,3 +27309,7 @@ Bruce 17 April 2005 ops/ profile_screen_form.php +David 17 April 2005 + - (from Reinhard Prix) add IOKit framework to Mac compile of core client + + configure.ac diff --git a/configure.ac b/configure.ac index 382a5889a6..df55870919 100644 --- a/configure.ac +++ b/configure.ac @@ -400,6 +400,16 @@ for Linux and Solaris, and will have no effect. ;; esac + ## we need to link IOKit.framework on MacOSX for the client-build +case $target in + *darwin*) + if test "${enable_client}" = yes; then + LIBS="$LIBS -framework IOKit" + fi + ;; + *) ;; +esac + if ( test "${enable_client_release}" = yes ) && ( test "${enable_client}" = yes ); then echo "----------" echo "NOTE: Building portable client binaries" diff --git a/doc/download.php b/doc/download.php index 739ba46909..7eccc4d58b 100755 --- a/doc/download.php +++ b/doc/download.php @@ -140,7 +140,8 @@ Click on your computer type, or scroll down. If your computer is not of one of these types, you can
Download information is also available in @@ -207,34 +208,32 @@ version( win_new(), "
BOINC provides a C++ interface to these RPCs.
The interface is based on the GUI_RPC class,
which provides the following functions
(the code is in lib/gui_rpc_client.h
,
- and the program gui_test.C
gives a usage example):
+and the program boinc_cmd.C
gives a usage example):
"; list_start(); diff --git a/lib/msg_log.C b/lib/msg_log.C index 47ec914809..fa33e6a9c2 100644 --- a/lib/msg_log.C +++ b/lib/msg_log.C @@ -44,9 +44,8 @@ using std::string; // // MSG_LOG has an "indent_level" state for how many spaces to indent output. // This corresponds in general to the function-call recursion level. -// Call MSG_LOG::enter_level() to increase by 1 level -// and leave_level() to decrease by 1 level. -// The SCOPE_MSG_LOG class takes care of calling leave_level() for you. +// Call MSG_LOG::enter_level() to increase or decrease by 1 level. +// The SCOPE_MSG_LOG class takes care of these calls for you. // Create a SCOPE_MSG_LOG object on the stack at the beginning of a function; // it will increment the level by 1 on construction, // and decrement the level by 1 on destruction at end of scope. @@ -88,6 +87,7 @@ void MSG_LOG::vprintf(int kind, const char* format, va_list va) { } // break a multi-line string into lines (so that we show prefix on each line) +// void MSG_LOG::vprintf_multiline( int kind, const char* str, const char* prefix_format, va_list va ) { diff --git a/version.h b/version.h index abb72abe73..7836bd9263 100644 --- a/version.h +++ b/version.h @@ -7,10 +7,10 @@ #define BOINC_MAJOR_VERSION 4 /* Minor part of BOINC version number */ -#define BOINC_MINOR_VERSION 35 +#define BOINC_MINOR_VERSION 30 /* String representation of BOINC version number */ -#define BOINC_VERSION_STRING "4.35" +#define BOINC_VERSION_STRING "4.30" #ifdef _WIN32 /* Name of package */ @@ -23,13 +23,13 @@ #define PACKAGE_NAME "BOINC" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "BOINC 4.35" +#define PACKAGE_STRING "BOINC 4.30" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "boinc" /* Define to the version of this package. */ -#define PACKAGE_VERSION "4.35" +#define PACKAGE_VERSION "4.30" #endif /* #ifdef _WIN32 */