[issue6416] Failed to compile selectmodule.c on windows (trunk)

2009-07-09 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: PIPE_BUF was introduced for the subprocess module to use it... on posix platforms only. r73916 (trunk) and r73917 (py3k) add the suggested #ifdef, and also fix test_subprocess. -- nosy: +amaury.forgeotdarc resolution: -> fixed status: open -> c

[issue6416] Failed to compile selectmodule.c on windows (trunk)

2009-07-09 Thread R. David Murray
R. David Murray added the comment: I found this article that might be of interest with regards to PIPE_BUF (or rather lack thereof) on Windows: http://cygwin.com/ml/cygwin-patches/2004-q3/msg00084.html It doesn't look like "doing the right thing" in Windows where in Posix you would use PIPE_BU

[issue6416] Failed to compile selectmodule.c on windows (trunk)

2009-07-09 Thread R. David Murray
R. David Murray added the comment: This constant was introduced in r73818 by Gregory, so I'm assigning this ticket to him. Note that the trunk Windows buildbot is also failing to compile because of this bug. -- assignee: -> gregory.p.smith components: +Library (Lib) -Windows keywords:

[issue6416] Failed to compile selectmodule.c on windows (trunk)

2009-07-04 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : -- versions: +Python 3.2 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue6416] Failed to compile selectmodule.c on windows (trunk)

2009-07-04 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : -- versions: +Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue6416] Failed to compile selectmodule.c on windows (trunk)

2009-07-04 Thread Hirokazu Yamamoto
Changes by Hirokazu Yamamoto : -- priority: -> high ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail

[issue6416] Failed to compile selectmodule.c on windows (trunk)

2009-07-04 Thread Hirokazu Yamamoto
Hirokazu Yamamoto added the comment: >E:\python-dev\trunk\PC\msvcrtmodule.c(39) : warning C4013: >関数'_heapmin' は定義されていません。int 型の値を返す外部関数と見なします。 This means "_heapmin is not defined". -- ___ Python tracker _

[issue6416] Failed to compile selectmodule.c on windows (trunk)

2009-07-04 Thread Hirokazu Yamamoto
New submission from Hirokazu Yamamoto : I cannot compile selectmodule.c on windows(trunk). PIPE_BUF will not be defined if macro _POSIX_ is not defined. But if define _POSIX_ before "#include " in Include/Python.h another compile error happens. E:\python-dev\trunk\PC\msvcrtmodule.c(39) : warning