8000 Remove leftovers from the times when long long wasn't required (GH-15… · python/cpython@82f4bfd · GitHub
[go: up one dir, main page]

Skip to content

Commit 82f4bfd

Browse files
Remove leftovers from the times when long long wasn't required (GH-15501)
In a38e9d1 pyconfig.h.in was manually edited and that edit was overwritten when running autoreconf. (cherry picked from commit 52c1a6a) Co-authored-by: Sergey Fedoseev <fedoseev.sergey@gmail.com>
1 parent 3769425 commit 82f4bfd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2313,7 +2313,7 @@ if test "$ac_cv_sizeof_off_t" -gt "$ac_cv_sizeof_long" -a \
23132313
"$ac_cv_sizeof_long_long" -ge "$ac_cv_sizeof_off_t"; then
23142314
AC_DEFINE(HAVE_LARGEFILE_SUPPORT, 1,
23152315
[Defined to enable large file support when an off_t is bigger than a long
2316-
and long long is available and at least as big as an off_t. You may need
2316+
and long long is at least as big as an off_t. You may need
23172317
to add some flags for configuration and compilation to enable this mode.
23182318
(For Solaris and Linux, the necessary defines are already defined.)])
23192319
AC_MSG_RESULT(yes)

pyconfig.h.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -569,9 +569,9 @@
569569
#undef HAVE_LANGINFO_H
570570

571571
/* Defined to enable large file support when an off_t is bigger than a long
572-
and long long is at least as big as an off_t. You may need to
573-
add some flags for configuration and compilation to enable this mode. (For
574-
Solaris and Linux, the necessary defines are already defined.) */
572+
and long long is at least as big as an off_t. You may need to add some
573+
flags for configuration and compilation to enable this mode. (For Solaris
574+
and Linux, the necessary defines are already defined.) */
575575
#undef HAVE_LARGEFILE_SUPPORT
576576

577577
/* Define to 1 if you have the 'lchflags' function. */

0 commit comments

Comments
 (0)
0