Koen van der Drift wrote: > Yeah, Iwas thinking along those lines as well. So I found that if I > comment out the line: > > set( CMAKE_OSX_ARCHITECTURES ppc;i386 ) > > it will not create a universal binary. But then it will create > different packages for ppc and i386, correct? How do I work around > that, should I make variants, eg? > > Thanks, > > - Koen. > > > >> It looks like your package is trying to build a universal binary and >> failing to find universal libraries. You'll probably need to patch it >> not to do that. >> >> You could do separate .info files, or do a conditionalized PatchScript if that's appropriate, e.g.
if ["%m" == i386] ; then <do stuff> That might do what you want: for powerPC you can remove the ";i386" above, and for i386, remove "ppc;", e.g. via sed. Unfortunately, we don't have the option any more to use different patch files with the same .info file. ------------------------------------------------------------------------------ Come build with us! The BlackBerry(R) Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9 - 12, 2009. Register now! http://p.sf.net/sfu/devconference _______________________________________________ Fink-devel mailing list [email protected] http://news.gmane.org/gmane.os.apple.fink.devel Subscription management: https://lists.sourceforge.net/lists/listinfo/fink-devel
