summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2001-07-26 13:41:06 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2001-07-26 13:41:06 (GMT)
commit4f1cd8bdcbd20bb0acdbe9e240f28c09dd38370f (patch)
tree06e19685ad77879ee4df995bf669235489786995 /Doc
parent4eb5940a4d350d250ab4af08a8b5b6e553e1814d (diff)
downloadcpython-4f1cd8bdcbd20bb0acdbe9e240f28c09dd38370f.zip
cpython-4f1cd8bdcbd20bb0acdbe9e240f28c09dd38370f.tar.gz
cpython-4f1cd8bdcbd20bb0acdbe9e240f28c09dd38370f.tar.bz2
Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/ext/ext.tex4
-rw-r--r--Doc/lib/libexcs.tex2
-rw-r--r--Doc/lib/libsys.tex4
3 files changed, 5 insertions, 5 deletions
diff --git a/Doc/ext/ext.tex b/Doc/ext/ext.tex
index cc5af6c..61e423e 100644
--- a/Doc/ext/ext.tex
+++ b/Doc/ext/ext.tex
@@ -2380,10 +2380,10 @@ Windows.
Grab the binary installer from \url{http://www.python.org/} and
install Python. The binary installer has all of the required header
-files except for \file{config.h}.
+files except for \file{pyconfig.h}.
Get the source distribution and extract it into a convenient location.
-Copy the \file{config.h} from the \file{PC/} directory into the
+Copy the \file{pyconfig.h} from the \file{PC/} directory into the
\file{include/} directory created by the installer.
Create a \file{Setup} file for your extension module, as described in
diff --git a/Doc/lib/libexcs.tex b/Doc/lib/libexcs.tex
index b9a31cc..58d929a 100644
--- a/Doc/lib/libexcs.tex
+++ b/Doc/lib/libexcs.tex
@@ -140,7 +140,7 @@ Raised when an \keyword{assert} statement fails.
always defined, but can only be raised when Python is configured
with the \longprogramopt{with-fpectl} option, or the
\constant{WANT_SIGFPE_HANDLER} symbol is defined in the
- \file{config.h} file.
+ \file{pyconfig.h} file.
\end{excdesc}
\begin{excdesc}{IOError}
diff --git a/Doc/lib/libsys.tex b/Doc/lib/libsys.tex
index 53c8c42..9f9cb0e 100644
--- a/Doc/lib/libsys.tex
+++ b/Doc/lib/libsys.tex
@@ -129,7 +129,7 @@ It is always available.
also \code{'/usr/local'}. This can be set at build time with the
\longprogramopt{exec-prefix} argument to the \program{configure}
script. Specifically, all configuration files (e.g. the
- \file{config.h} header file) are installed in the directory
+ \file{pyconfig.h} header file) are installed in the directory
\code{exec_prefix + '/lib/python\var{version}/config'}, and shared
library modules are installed in \code{exec_prefix +
'/lib/python\var{version}/lib-dynload'}, where \var{version} is
@@ -298,7 +298,7 @@ else:
the \longprogramopt{prefix} argument to the \program{configure}
script. The main collection of Python library modules is installed
in the directory \code{prefix + '/lib/python\var{version}'} while
- the platform independent header files (all except \file{config.h})
+ the platform independent header files (all except \file{pyconfig.h})
are stored in \code{prefix + '/include/python\var{version}'}, where
\var{version} is equal to \code{version[:3]}.
\end{datadesc}