Skip to content
Snippets Groups Projects
Commit 0a61ecf0 authored by Charlie Fenton's avatar Charlie Fenton
Browse files

Mac: remove powerpc-apple-darwin from platform list supported by Intel Macs.

svn path=/branches/boinc_core_release_6_12/; revision=23417
parent 9d0d8e36
Branches
Tags
No related merge requests found
......@@ -9465,3 +9465,12 @@ Rom 20 April 2011
/
configure.ac
version.h
Charlie 22 Apr 2011
- Mac: We no longer request PowerPC applications on Intel Macs
because all projects supporting Macs should have Intel
applications by now, and PowerPC emulation ("Rosetta") is
not always supported in newer versions of OS X.
client/
cs_platforms.cpp
......@@ -117,9 +117,13 @@ void CLIENT_STATE::detect_platforms() {
// Supported on both Mac Intel architectures
add_platform("i686-apple-darwin");
#endif
// Supported on all 3 Mac architectures
#else
// We no longer request PowerPC applications on Intel Macs
// because all projects supporting Macs should have Intel
// applications by now, and PowerPC emulation ("Rosetta")
// is not always supported in newer versions of OS X.
add_platform("powerpc-apple-darwin");
#endif
#elif defined(__linux__) && ( defined(__i386__) || defined(__x86_64__) )
// Let's try to support both 32 and 64 bit applications in one client
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment