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 pitrou
Recipients giampaolo.rodola, loewis, pitrou, qyb
Date 2010-07-10.14:04:11
SpamBayes Score 0.011983255
Marked as misclassified No
Message-id <1278770654.3.0.0764773770009.issue1522400@psf.upfronthosting.co.za>
In-reply-to
Content
A new patch should be generated against 3.2 (the current one doesn't apply cleanly).

Also, checking for linux/irda.h requires that sys/socket.h is included, hence needing the following snippet in configure.in:

# On Linux, irda.h requires sys/socket.h  
AC_CHECK_HEADERS(linux/irda.h,,,[   
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h> 
#endif
])
History
Date User Action Args
2010-07-10 14:04:14pitrousetrecipients: + pitrou, loewis, giampaolo.rodola, qyb
2010-07-10 14:04:14pitrousetmessageid: <1278770654.3.0.0764773770009.issue1522400@psf.upfronthosting.co.za>
2010-07-10 14:04:12pitroulinkissue1522400 messages
2010-07-10 14:04:11pitroucreate