This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mthibaut
Recipients mthibaut
Date 2007-11-27.21:19:39
SpamBayes Score 0.043145746
Marked as misclassified No
Message-id <1196198379.38.0.240170599355.issue1506@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2007-11-27 21:19:39mthibautsetspambayes_score: 0.0431457 -> 0.043145746
recipients: + mthibaut
2007-11-27 21:19:39mthibautsetspambayes_score: 0.0431457 -> 0.0431457
messageid: <1196198379.38.0.240170599355.issue1506@psf.upfronthosting.co.za>
2007-11-27 21:19:39mthibautlinkissue1506 messages
2007-11-27 21:19:39mthibautcreate