Re: [Pyobjc-dev] PyObjC 2.2b1 easy_install fails to build on PPC G5 running Leopard
Brought to you by:
ronaldoussoren
|
From: Ronald O. <ron...@ma...> - 2009-03-19 09:13:37
|
On 18 Mar, 2009, at 2:09, Ben Artin wrote:
>> I guess /usr/local has some old header files from the age of Tiger.
>
> No version of Mac OS X ever installed anything in /usr/local, so this
> is a 3rd party package you installed at some point, and is presumably
> superseded by a vendor library these days.
Does anyone know a way to exclude /usr/local/include and /usr/local/
lib from the compiler search paths? "-nostdinc" and "-nostdlib" are a
bit blunt, although something like this should work:
CFLAGS=[
"nostdinc",
"-isystem/usr/include",
"-isystem/usr/lib/gcc/i686-apple-darwin9/4.0.1/include",
"-iframework/System/Library/Frameworks",
...
]
(Although the list of included header/framework directories should be
extracted from the output of 'cpp -v' instead of hardcoding them)
Ronald
>
> --
>
> <http://artins.org/ben>
>
> "I have learned two ways to tie my shoes. One way is only good for
> lying down." -- Valentine Michael Smith
>
>
>
>
>
>
> ------------------------------------------------------------------------------
> Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM)
> are
> powering Web 2.0 with engaging, cross-platform capabilities. Quickly
> and
> easily build your RIAs with Flex Builder, the Eclipse(TM)based
> development
> software that enables intelligent coding and step-through debugging.
> Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
> _______________________________________________
> Pyobjc-dev mailing list
> Pyo...@li...
> https://lists.sourceforge.net/lists/listinfo/pyobjc-dev
|