forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue python#17594: MINGW: preset configure defaults
- Loading branch information
Roumen Petrov
authored and
Faraz Shahbazker
committed
Sep 17, 2019
1 parent
19eef91
commit 8af8b02
Showing
3 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# configure defaults for mingw* hosts | ||
|
||
# mingw functions to ignore | ||
ac_cv_func_ftruncate=ignore # implement it as _chsize | ||
|
||
# mingw-w64 functions to ignore | ||
ac_cv_func_truncate=ignore | ||
ac_cv_func_alarm=ignore | ||
|
||
# files to ignore | ||
ac_cv_file__dev_ptmx=ignore #NOTE: under MSYS environment device exist | ||
ac_cv_file__dev_ptc=no |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# configure defaults for mingw32 host if cross-build | ||
|
||
ac_cv_little_endian_double=yes | ||
ac_cv_big_endian_double=no | ||
ac_cv_mixed_endian_double=no | ||
|
||
ac_cv_tanh_preserves_zero_sign=yes | ||
|
||
ac_cv_wchar_t_signed=no | ||
|
||
ac_cv_have_size_t_format=no |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters