diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2017-09-29 13:40:02 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2017-09-29 13:40:02 +0300 |
commit | 424a50000a78fff715de4417dba9b4498aeeee4c (patch) | |
tree | d27f003c7d140fef24efd1b2ca1325ae099154b9 /debian/patches/no-large-file-support.diff | |
download | python3.5-debian.tar.gz |
Imported python3.5 3.5.4-4debian/3.5.4-4debian
Diffstat (limited to 'debian/patches/no-large-file-support.diff')
-rw-r--r-- | debian/patches/no-large-file-support.diff | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/debian/patches/no-large-file-support.diff b/debian/patches/no-large-file-support.diff new file mode 100644 index 0000000..78b9f12 --- /dev/null +++ b/debian/patches/no-large-file-support.diff @@ -0,0 +1,18 @@ +# DP: disable large file support for GNU/Hurd + +Index: b/configure.ac +=================================================================== +--- a/configure.ac ++++ b/configure.ac +@@ -2059,6 +2059,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 |