Antoine Pitrou <pit...@free.fr> added the comment:

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
])

----------
nosy: +pitrou
stage: patch review -> needs patch

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue1522400>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to