On Mar 3, 2009, at 4:18 PM, D. Richard Hipp wrote: > Another issue, that I only discovered two days ago, is that binaries > compiled for Leopard (OS 10.5) will only run on Leopard and not older > OS X systems. And the precompiled shell found on the website is > compiled on Leopard (which is all I have at hand.) So downloading and > running the pre-compiled shell will not work unless you have the > latest Mac OS. I don't know how to fix this problem. Probably in the > next release we will just label the binaries as "Leopard or later > only". > > D. Richard Hipp > [email protected]
The default deployment target on Leopard is Leopard. On earlier systems it's 10.3 (or 10.2?). To get a Tiger-compatible Sqlite built on Leopard: export MACOSX_DEPLOYMENT_TARGET=10.4 export CFLAGS="-Os -arch ppc -arch i386 -isysroot /Developer/SDKs/ MacOSX10.4u.sdk" then configure as you normally would. If you have the 10.3 SDK installed, you could go as far back as 10.3 deployment+SDK. ----- William Kyngesburye <kyngchaos*at*kyngchaos*dot*com> http://www.kyngchaos.com/ "Those people who most want to rule people are, ipso-facto, those least suited to do it." - A rule of the universe, from the HitchHiker's Guide to the Galaxy _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

