python3.3 build failure on kfreebsd and the hurd

2012-11-06 Thread Matthias Klose
python3.3 build failure on kfreebsd and the hurd, please could somebody have a look and propose a patch? thanks, Matthias -- To UNSUBSCRIBE, email to debian-hurd-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org Archive: http

Re: python3.3 build failure on kfreebsd and the hurd

2012-11-06 Thread Pino Toscano
Hi, Alle martedì 6 novembre 2012, Matthias Klose ha scritto: python3.3 build failure on kfreebsd and the hurd, please could somebody have a look and propose a patch? This was reported upstream months ago: http://bugs.python.org/issue13669 I just left a comment with a possible solution

Re: python3.3 build failure on kfreebsd and the hurd

2012-11-06 Thread Steven Chamberlain
Hi, I'd say the test at Modules/posixmodule.c:114 is wrong: #if defined(HAVE_SYS_XATTR_H) defined(__GLIBC__) #define USE_XATTRS #endif Because GLIBC doesn't imply a working xattr interface (traditionally a Linux thing?). There seem to be implementations only for Linux, GNU/Hurd and as part

Re: python3.3 build failure on kfreebsd and the hurd

2012-11-06 Thread Pino Toscano
Hi, Alle martedì 6 novembre 2012, Steven Chamberlain ha scritto: I'd say the test at Modules/posixmodule.c:114 is wrong: #if defined(HAVE_SYS_XATTR_H) defined(__GLIBC__) #define USE_XATTRS #endif Because GLIBC doesn't imply a working xattr interface (traditionally a Linux thing?).