]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
- Don't use largefile support for GNU/Hurd.
authordoko@ubuntu.com <doko@ubuntu.com>
Tue, 14 Jun 2016 08:15:25 +0000 (10:15 +0200)
committerdoko@ubuntu.com <doko@ubuntu.com>
Tue, 14 Jun 2016 08:15:25 +0000 (10:15 +0200)
Misc/NEWS
configure
configure.ac

index 46e4296d235e03265100a8cf5a77f039c384c06e..0238f373144d0803688f863dbd097159b83d86a1 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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
 ==================================
index 3853716227809ed734e4ba1aa795689093d48c3d..7b0253059736ff429f816c19959fc550b54379e8 100755 (executable)
--- a/configure
+++ b/configure
@@ -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
@@ -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
index fa1bdec1385c4ea2508129bbfbca1569eba2662e..39d12e98de321c97a4cb3dc8a9b0251d8d681996 100644 (file)
@@ -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