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

Skip to content

Commit b4e83a3

Browse files
miss-islingtonsir-sigurd
authored andcommitted
Remove leftovers from the times when long long wasn't required (GH-15501) (GH-15517)
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 c1c1a33 commit b4e83a3

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
@@ -2333,7 +2333,7 @@ if test "$ac_cv_sizeof_off_t" -gt "$ac_cv_sizeof_long" -a \
23332333
"$ac_cv_sizeof_long_long" -ge "$ac_cv_sizeof_off_t"; then
23342334
AC_DEFINE(HAVE_LARGEFILE_SUPPORT, 1,
23352335
[Defined to enable large file support when an off_t is bigger than a long
2336-
and long long is available and at least as big as an off_t. You may need
2336+
and long long is at least as big as an off_t. You may need
23372337
to add some flags for configuration and compilation to enable this mode.
23382338
(For Solaris and Linux, the necessary defines are already defined.)])
23392339
AC_MSG_RESULT(yes)

pyconfig.h.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -540,9 +540,9 @@
540540
#undef HAVE_LANGINFO_H
541541

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

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

0 commit comments

Comments
 (0)
0