While I doubt it's backwards compatible to earlier versions of OS X, I've gotten BOINC to compile on Snow Leopard with a couple simple changes (I figure this might be useful):
in _autosetup rename libtoolize to glibtoolize then in ./sched/hr_info.cpp change: 23 #include <malloc.h> to: 23 #if !defined(__APPLE__) 24 #include <malloc.h> 25 #endif because malloc.h is in stdlib.h in os x. I think there might be some issues with the graphics library (but I'm not using that), but it might be useful for streamlining the mac build process, as you don't need to use anything in the mac_build directory. --Travis ---------------------------------------------------------------------------------------------------------- Travis Desell <deselt @ cs.rpi.edu> 1-518-867-1054 Worldwide Computing Laboratory ( http://wcl.cs.rpi.edu/ ) milky...@home ( http://milkyway.cs.rpi.edu/ ) Rensselaer Polytechnic Institute, 110 8th Street, Troy NY 12180, USA ---------------------------------------------------------------------------------------------------------- _______________________________________________ boinc_dev mailing list [email protected] http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_dev To unsubscribe, visit the above URL and (near bottom of page) enter your email address.
