New submission from Maarten Thibaut:

On Solaris, alloca() is a #define which is inside <alloca.h>. 

Ctypes fails to compile because the #define is missing. Please fix by
adding the following at the front of these 2 files:

#if defined (__SVR4) && defined (__sun)
#   include <alloca.h>
#endif

__________________________________
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1506>
__________________________________
_______________________________________________
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to