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

Skip to content

Commit 381ba25

Browse files
sir-sigurdwebsurfer5
authored andcommitted
Remove leftovers from the times when long long wasn't required (pythonGH-15501)
In a38e9d1 pyconfig.h.in was manually edited and that edit was overwritten when running autoreconf.
1 parent 4a3e647 commit 381ba25

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