Skip to content

Commit

Permalink
- Don't use largefile support for GNU/Hurd.
Browse files Browse the repository at this point in the history
  • Loading branch information
doko42 committed Jun 14, 2016
1 parent eea86b0 commit 006a56c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Misc/NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ Build
Install the platform specifc _sysconfigdata module into the platform
directory and rename it to include the ABIFLAGS.

- Don't use largefile support for GNU/Hurd.


What's New in Python 3.6.0 alpha 2
==================================
Expand Down
6 changes: 5 additions & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -2890,7 +2890,6 @@ ac_config_headers="$ac_config_headers pyconfig.h"




ac_aux_dir=
for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
if test -f "$ac_dir/install-sh"; then
Expand Down Expand Up @@ -8018,6 +8017,11 @@ if test "$sol_lfs_bug" = "yes"; then
use_lfs=no
fi

# Don't use largefile support for GNU/Hurd
case $ac_sys_system in GNU*)
use_lfs=no
esac

if test "$use_lfs" = "yes"; then
# Two defines needed to enable largefile support on various platforms
# These may affect some typedefs
Expand Down
5 changes: 5 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1986,6 +1986,11 @@ if test "$sol_lfs_bug" = "yes"; then
use_lfs=no
fi

# Don't use largefile support for GNU/Hurd
case $ac_sys_system in GNU*)
use_lfs=no
esac

if test "$use_lfs" = "yes"; then
# Two defines needed to enable largefile support on various platforms
# These may affect some typedefs
Expand Down

0 comments on commit 006a56c

Please sign in to comment.