> ... except that INT_PTR is 64-bit on Win64, and int is not.
>
yeah, I just found that too :)

This means that php-src is currently correct for all architectures but fcgi
src is not.  So what's the best line of attack here?

#ifdef _WIN64
+ # define ssize_t SSIZE_T
# define SIZEOF_SIZE_T 8
# define SIZEOF_PTRDIFF_T 8
#else
+ # define ssize_t int
# define SIZEOF_SIZE_T 4
# define SIZEOF_PTRDIFF_T 4
#endif

?

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to