File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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*/
Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ SRCDIRS= @SRCDIRS@
160160SUBDIRSTOO= 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
164164DISTFILES= README ChangeLog $(CONFIGFILES)
165165DISTDIRS= $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy
166166DIST= $(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
12781278autoconf:
12791279 (cd $(srcdir); autoconf -Wall)
12801280 (cd $(srcdir); autoheader -Wall)
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -135,15 +135,15 @@ def reported_news(file_paths):
135135@status ("configure regenerated" , modal = True , info = str )
136136def 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 )
144144def 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"
Original file line number Diff line number Diff line change @@ -14599,8 +14599,8 @@ esac
1459914599
1460014600cat >>$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.
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments