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.
Created on 2013年03月31日 19:46 by rpetrov, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| 0005-MINGW-preset-configure-defaults.patch | rpetrov, 2013年03月31日 19:46 | review | ||
| Messages (3) | |||
|---|---|---|---|
| msg185653 - (view) | Author: Roumen Petrov (rpetrov) * | Date: 2013年03月31日 19:46 | |
split of issue3871, but implement ed differently - externalize some configure defaults instead to update configure script for each check |
|||
| msg221296 - (view) | Author: Mark Lawrence (BreamoreBoy) * | Date: 2014年06月22日 19:36 | |
Can someone comment on this please as I know nothing about the build system or mingw. |
|||
| msg271434 - (view) | Author: Martin Panter (martin.panter) * (Python committer) | Date: 2016年07月27日 06:16 | |
Interesting approach. Why two separate files, for cross-compiling and native compiling? Why not merge them together? Some of the other Min GW patches add stuff like the following to the configure.ac checks. Would it make more sense to add e.g. ac_cv_struct_addrinfo=yes to the config, and avoid the compile check? AC_CACHE_VAL(ac_cv_struct_addrinfo, -AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <netdb.h>]], [[struct addrinfo a]])], +AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ +#ifdef HAVE_WS2TCPIP_H +# include <ws2tcpip.h> +#else +# include <netdb.h> +#endif]], + [[struct addrinfo a]])], [ac_cv_struct_addrinfo=yes], [ac_cv_struct_addrinfo=no])) |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:43 | admin | set | github: 61794 |
| 2021年10月21日 10:00:13 | iritkatriel | set | resolution: duplicate -> wont fix |
| 2021年10月20日 12:46:47 | iritkatriel | set | status: open -> closed superseder: MinGW is unsupported - close all open issues and list them here. resolution: duplicate stage: patch review -> resolved |
| 2016年07月27日 07:33:32 | BreamoreBoy | set | nosy:
- BreamoreBoy |
| 2016年07月27日 06:18:28 | martin.panter | link | issue18500 dependencies |
| 2016年07月27日 06:16:44 | martin.panter | set | stage: patch review |
| 2016年07月27日 06:16:32 | martin.panter | set | nosy:
+ martin.panter messages: + msg271434 |
| 2014年06月22日 19:36:07 | BreamoreBoy | set | nosy:
+ BreamoreBoy messages: + msg221296 |
| 2013年03月31日 19:46:49 | rpetrov | create | |