[Python-checkins] devguide: Update configure.in to configure.ac.
ross.lagerwall
python-checkins at python.org
Thu Mar 15 04:57:10 CET 2012
http://hg.python.org/devguide/rev/01d8edef1109
changeset: 497:01d8edef1109
user: Ross Lagerwall <rosslagerwall at gmail.com>
date: Thu Mar 15 05:56:55 2012 +0200
summary:
Update configure.in to configure.ac.
files:
patch.rst | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/patch.rst b/patch.rst
--- a/patch.rst
+++ b/patch.rst
@@ -144,12 +144,12 @@
functionality (such as using a new system call), it is necessary to update the
``configure`` script to test for availability of the functionality.
-Python's ``configure`` script is generated from ``configure.in`` using Autoconf.
-Instead of editing ``configure``, edit ``configure.in`` and then run
+Python's ``configure`` script is generated from ``configure.ac`` using Autoconf.
+Instead of editing ``configure``, edit ``configure.ac`` and then run
``autoreconf`` to regenerate ``configure`` and a number of other files (such as
``pyconfig.h``.
-When submitting a patch with changes made to ``configure.in``, it is preferred
+When submitting a patch with changes made to ``configure.ac``, it is preferred
to leave out the generated files as differences between Autoconf versions
frequently results in many spurious changes cluttering the patch. Instead,
remind any potential reviewers on the tracker to run ``autoreconf``.
@@ -159,14 +159,14 @@
``autoreconf`` runs ``autoconf`` and a number of other tools repeatedly as is
appropriate.
-Python's ``configure.in`` script typically requires a specific version of
+Python's ``configure.ac`` script typically requires a specific version of
Autoconf. At the moment, this reads: ``version_required(2.65)``
If the system copy of Autoconf does not match this version, you will need to
install your own copy of Autoconf:
1. Go to http://ftp.gnu.org/gnu/autoconf/ and download the version of Autoconf
- matching the one in ``configure.in``::
+ matching the one in ``configure.ac``::
wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.65.tar.bz2
--
Repository URL: http://hg.python.org/devguide
More information about the Python-checkins
mailing list