Eric Blake wrote:
> 
> But on Windows 64 bit platforms, that is exactly the case (64-bit
> pointers, 32-bit long).

Thanks, Eric.  More compat.h magic:

> #ifndef HAVE_INTPTR_T
> # if SIZEOF_CHARP == SIZEOF_LONG
>     typedef signed long         intptr_t;
> # else
>     typedef signed int          intptr_t;
> # endif
> #endif
> 
> #ifndef HAVE_UINTPTR_T
> # if SIZEOF_CHARP == SIZEOF_LONG
>     typedef unsigned long       intptr_t;
> # else
>     typedef unsigned int        intptr_t;
> # endif
> #endif

This is in 5.9.10pre12
see: http://autogen.sourceforge.net/data/

Regards, Bruce

------------------------------------------------------------------------------
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
_______________________________________________
Autogen-users mailing list
Autogen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/autogen-users

Reply via email to