Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3cef2a9

Browse files
committed
- rename configure.in to configure.ac
- change references from configure.in to configure.ac
1 parent c8ff460 commit 3cef2a9

9 files changed

Lines changed: 321 additions & 298 deletions

File tree

Include/patchlevel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
defined(PY_MAJOR_VERSION).
77
88
When the major or minor version changes, the VERSION variable in
9-
configure.in must also be changed.
9+
configure.ac must also be changed.
1010
1111
There is also (independent) API version information in modsupport.h.
1212
*/

Makefile.pre.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ SRCDIRS= @SRCDIRS@
152152
SUBDIRSTOO= Include Lib Misc Demo
153153

154154
# Files and directories to be distributed
155-
CONFIGFILES= configure configure.in acconfig.h pyconfig.h.in Makefile.pre.in
155+
CONFIGFILES= configure configure.ac acconfig.h pyconfig.h.in Makefile.pre.in
156156
DISTFILES= README ChangeLog $(CONFIGFILES)
157157
DISTDIRS= $(SUBDIRS) $(SUBDIRSTOO) Ext-dummy
158158
DIST= $(DISTFILES) $(DISTDIRS)
@@ -1165,7 +1165,7 @@ recheck:
11651165
$(SHELL) config.status --recheck
11661166
$(SHELL) config.status
11671167

1168-
# Rebuild the configure script from configure.in; also rebuild pyconfig.h.in
1168+
# Rebuild the configure script from configure.ac; also rebuild pyconfig.h.in
11691169
autoconf:
11701170
(cd $(srcdir); autoconf)
11711171
(cd $(srcdir); autoheader)

Misc/README.OpenBSD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ script to disable certain options. Search for a line that looks like:
2929

3030
If your version is not in that list, e.g., 3.9, add the version
3131
number. In this case, you would just need to add a 9 after the 8.
32-
If you modify configure.in, you will need to regenerate configure
32+
If you modify configure.ac, you will need to regenerate configure
3333
with autoconf.
3434

3535
If your version is already in the list, this is not a known problem.

PC/pyconfig.h

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

Python/thread.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include <stdlib.h>
2525

2626
#ifdef __sgi
27-
#ifndef HAVE_PTHREAD_H /* XXX Need to check in configure.in */
27+
#ifndef HAVE_PTHREAD_H /* XXX Need to check in configure.ac */
2828
#undef _POSIX_THREADS
2929
#endif
3030
#endif

README

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ longer:
241241
- NeXT
242242
- Irix 4 and --with-sgi-dl
243243
- Linux 1
244-
- Systems defining __d6_pthread_create (configure.in)
244+
- Systems defining __d6_pthread_create (configure.ac)
245245
- Systems defining PY_PTHREAD_D4, PY_PTHREAD_D6,
246246
or PY_PTHREAD_D7 in thread_pthread.h
247247
- Systems using --with-dl-dld
@@ -680,10 +680,10 @@ platforms, additional compiler and/or linker options are required for
680680
threads to work properly. Below is a table of those options,
681681
collected by Bill Janssen. We would love to automate this process
682682
more, but the information below is not enough to write a patch for the
683-
configure.in file, so manual intervention is required. If you patch
684-
the configure.in file and are confident that the patch works, please
683+
configure.ac file, so manual intervention is required. If you patch
684+
the configure.ac file and are confident that the patch works, please
685685
send in the patch. (Don't bother patching the configure script itself
686-
-- it is regenerated each time the configure.in file changes.)
686+
-- it is regenerated each time the configure.ac file changes.)
687687

688688
Compiler switches for threads
689689
.............................
@@ -1201,7 +1201,7 @@ RISCOS/ Files specific to RISC OS port
12011201
Tools/ Some useful programs written in Python
12021202
pyconfig.h.in Source from which pyconfig.h is created (GNU autoheader output)
12031203
configure Configuration shell script (GNU autoconf output)
1204-
configure.in Configuration specification (input for GNU autoconf)
1204+
configure.ac Configuration specification (input for GNU autoconf)
12051205
install-sh Shell script used to install files
12061206
setup.py Python script used to build extension modules
12071207

0 commit comments

Comments
 (0)