Skip to content

Commit 5ce31cc

Browse files
committed
merge 3.2
2 parents e7c8fde + d83be23 commit 5ce31cc

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

Include/patchlevel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/* Python version identification scheme.
33
44
When the major or minor version changes, the VERSION variable in
5-
configure.in must also be changed.
5+
configure.ac must also be changed.
66
77
There is also (independent) API version information in modsupport.h.
88
*/

Makefile.pre.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ SRCDIRS= @SRCDIRS@
160160
SUBDIRSTOO= Include Lib Misc
161161

162162
# Files and directories to be distributed
163-
CONFIGFILES= configure configure.in acconfig.h pyconfig.h.in Makefile.pre.in
163+
CONFIGFILES= configure configure.ac acconfig.h pyconfig.h.in Makefile.pre.in
164164
DISTFILES= README ChangeLog $(CONFIGFILES)
165165
DISTDIRS= $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy
166166
DIST= $(DISTFILES) $(DISTDIRS)
@@ -1274,7 +1274,7 @@ recheck:
12741274
$(SHELL) config.status --recheck
12751275
$(SHELL) config.status
12761276

1277-
# Rebuild the configure script from configure.in; also rebuild pyconfig.h.in
1277+
# Rebuild the configure script from configure.ac; also rebuild pyconfig.h.in
12781278
autoconf:
12791279
(cd $(srcdir); autoconf -Wall)
12801280
(cd $(srcdir); autoheader -Wall)

PC/pyconfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */
340340
# define SIZEOF_FPOS_T 8
341341
# define SIZEOF_HKEY 8
342342
# define SIZEOF_SIZE_T 8
343-
/* configure.in defines HAVE_LARGEFILE_SUPPORT iff HAVE_LONG_LONG,
343+
/* configure.ac defines HAVE_LARGEFILE_SUPPORT iff HAVE_LONG_LONG,
344344
sizeof(off_t) > sizeof(long), and sizeof(PY_LONG_LONG) >= sizeof(off_t).
345345
On Win64 the second condition is not true, but if fpos_t replaces off_t
346346
then this is true. The uses of HAVE_LARGEFILE_SUPPORT imply that Win64

Tools/scripts/patchcheck.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,15 +135,15 @@ def reported_news(file_paths):
135135
@status("configure regenerated", modal=True, info=str)
136136
def regenerated_configure(file_paths):
137137
"""Check if configure has been regenerated."""
138-
if 'configure.in' in file_paths:
138+
if 'configure.ac' in file_paths:
139139
return "yes" if 'configure' in file_paths else "no"
140140
else:
141141
return "not needed"
142142

143143
@status("pyconfig.h.in regenerated", modal=True, info=str)
144144
def regenerated_pyconfig_h_in(file_paths):
145145
"""Check if pyconfig.h.in has been regenerated."""
146-
if 'configure.in' in file_paths:
146+
if 'configure.ac' in file_paths:
147147
return "yes" if 'pyconfig.h.in' in file_paths else "no"
148148
else:
149149
return "not needed"

configure

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14599,8 +14599,8 @@ esac
1459914599
1460014600
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1460114601
# Files that config.status was made for.
14602-
config_files="`echo $ac_config_files`"
14603-
config_headers="`echo $ac_config_headers`"
14602+
config_files="$ac_config_files"
14603+
config_headers="$ac_config_headers"
1460414604
1460514605
_ACEOF
1460614606
File renamed without changes.

pyconfig.h.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* pyconfig.h.in. Generated from configure.in by autoheader. */
1+
/* pyconfig.h.in. Generated from configure.ac by autoheader. */
22

33

44
#ifndef Py_PYCONFIG_H

0 commit comments

Comments
 (0)