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

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

svn path=/trunk/boinc/; revision=23416
parent 6b0eba46
Branches
Tags
No related merge requests found
......@@ -2409,3 +2409,12 @@ David 21 Apr 2011
sim.cpp
work_fetch.cpp
cs_statefile.cpp
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