summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--Lib/distutils/tests/test_util.py5
-rw-r--r--Lib/posixpath.py12
-rw-r--r--Lib/test/test_pathlib.py3
-rw-r--r--Lib/test/test_posix.py7
-rw-r--r--Lib/test/test_typing.py44
-rw-r--r--Lib/typing.py6
-rw-r--r--Makefile.pre.in14
-rw-r--r--Misc/NEWS.d/next/Library/2022-01-27-11-54-16.bpo-41370.gYxCPE.rst1
-rw-r--r--Misc/NEWS.d/next/Library/2022-03-05-21-51-31.bpo-46933.6yzWtb.rst1
-rw-r--r--Misc/NEWS.d/next/Windows/2022-03-07-16-34-11.bpo-46948.Ufd4tG.rst2
-rw-r--r--Modules/Setup.bootstrap.in (renamed from Modules/Setup.bootstrap)2
-rw-r--r--Tools/msi/appendpath/appendpath.wxs1
-rw-r--r--Tools/msi/bundle/bundle.wxs2
-rw-r--r--Tools/msi/common.wxs16
-rw-r--r--Tools/msi/dev/dev.wxs1
-rw-r--r--Tools/msi/doc/doc.wxs1
-rw-r--r--Tools/msi/lib/lib.wxs1
-rw-r--r--Tools/msi/path/path.wxs3
-rw-r--r--Tools/msi/tcltk/tcltk.wxs1
-rw-r--r--Tools/msi/test/test.wxs1
-rw-r--r--Tools/msi/tools/tools.wxs1
-rw-r--r--Tools/msi/ucrt/ucrt.wxs1
-rwxr-xr-xconfigure879
-rw-r--r--configure.ac129
-rw-r--r--pyconfig.h.in3
26 files changed, 572 insertions, 566 deletions
diff --git a/.gitignore b/.gitignore
index 39de841..3c6adb4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -75,6 +75,7 @@ Mac/pythonw
Misc/python.pc
Misc/python-embed.pc
Misc/python-config.sh
+Modules/Setup.bootstrap
Modules/Setup.config
Modules/Setup.local
Modules/Setup.stdlib
diff --git a/Lib/distutils/tests/test_util.py b/Lib/distutils/tests/test_util.py
index 812d44e..f9c223f 100644
--- a/Lib/distutils/tests/test_util.py
+++ b/Lib/distutils/tests/test_util.py
@@ -248,7 +248,10 @@ class UtilTestCase(support.EnvironGuard, unittest.TestCase):
util._environ_checked = 0
os.environ.pop('HOME', None)
- import pwd
+ try:
+ import pwd
+ except ImportError:
+ raise unittest.SkipTest("Test requires pwd module.")
# only set pw_dir field, other fields are not used
result = pwd.struct_passwd((None, None, None, None, None,
diff --git a/Lib/posixpath.py b/Lib/posixpath.py
index a46c667..a7b2f2d 100644
--- a/Lib/posixpath.py
+++ b/Lib/posixpath.py
@@ -241,7 +241,11 @@ def expanduser(path):
i = len(path)
if i == 1:
if 'HOME' not in os.environ:
- import pwd
+ try:
+ import pwd
+ except ImportError:
+ # pwd module unavailable, return path unchanged
+ return path
try:
userhome = pwd.getpwuid(os.getuid()).pw_dir
except KeyError:
@@ -251,7 +255,11 @@ def expanduser(path):
else:
userhome = os.environ['HOME']
else:
- import pwd
+ try:
+ import pwd
+ except ImportError:
+ # pwd module unavailable, return path unchanged
+ return path
name = path[1:i]
if isinstance(name, bytes):
name = str(name, 'ASCII')
diff --git a/Lib/test/test_pathlib.py b/Lib/test/test_pathlib.py
index f03fcbe..713d279 100644
--- a/Lib/test/test_pathlib.py
+++ b/Lib/test/test_pathlib.py
@@ -1486,6 +1486,9 @@ class _BasePathTest(object):
self.assertIs(type(p), type(q))
self.assertTrue(p.is_absolute())
+ @unittest.skipIf(
+ pwd is None, reason="Test requires pwd module to get homedir."
+ )
def test_home(self):
with os_helper.EnvironmentVarGuard() as env:
self._test_home(self.cls.home())
diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py
index 5cc04fd..eecddfe 100644
--- a/Lib/test/test_posix.py
+++ b/Lib/test/test_posix.py
@@ -15,7 +15,6 @@ import signal
import time
import os
import platform
-import pwd
import stat
import tempfile
import unittest
@@ -23,6 +22,11 @@ import warnings
import textwrap
from contextlib import contextmanager
+try:
+ import pwd
+except ImportError:
+ pwd = None
+
_DUMMY_SYMLINK = os.path.join(tempfile.gettempdir(),
os_helper.TESTFN + '-dummy-symlink')
@@ -126,6 +130,7 @@ class PosixTester(unittest.TestCase):
@unittest.skipUnless(hasattr(posix, 'initgroups'),
"test needs os.initgroups()")
+ @unittest.skipUnless(hasattr(pwd, 'getpwuid'), "test needs pwd.getpwuid()")
def test_initgroups(self):
# It takes a string and an integer; check that it raises a TypeError
# for other argument lists.
diff --git a/Lib/test/test_typing.py b/Lib/test/test_typing.py
index 86baed9..17d78cf 100644
--- a/Lib/test/test_typing.py
+++ b/Lib/test/test_typing.py
@@ -32,6 +32,7 @@ from typing import TypeAlias
from typing import ParamSpec, Concatenate, ParamSpecArgs, ParamSpecKwargs
from typing import TypeGuard
import abc
+import textwrap
import typing
import weakref
import types
@@ -2156,6 +2157,45 @@ class GenericTests(BaseTestCase):
def barfoo2(x: CT): ...
self.assertIs(get_type_hints(barfoo2, globals(), locals())['x'], CT)
+ def test_generic_pep585_forward_ref(self):
+ # See https://bugs.python.org/issue41370
+
+ class C1:
+ a: list['C1']
+ self.assertEqual(
+ get_type_hints(C1, globals(), locals()),
+ {'a': list[C1]}
+ )
+
+ class C2:
+ a: dict['C1', list[List[list['C2']]]]
+ self.assertEqual(
+ get_type_hints(C2, globals(), locals()),
+ {'a': dict[C1, list[List[list[C2]]]]}
+ )
+
+ # Test stringified annotations
+ scope = {}
+ exec(textwrap.dedent('''
+ from __future__ import annotations
+ class C3:
+ a: List[list["C2"]]
+ '''), scope)
+ C3 = scope['C3']
+ self.assertEqual(C3.__annotations__['a'], "List[list['C2']]")
+ self.assertEqual(
+ get_type_hints(C3, globals(), locals()),
+ {'a': List[list[C2]]}
+ )
+
+ # Test recursive types
+ X = list["X"]
+ def f(x: X): ...
+ self.assertEqual(
+ get_type_hints(f, globals(), locals()),
+ {'x': list[list[ForwardRef('X')]]}
+ )
+
def test_extended_generic_rules_subclassing(self):
class T1(Tuple[T, KT]): ...
class T2(Tuple[T, ...]): ...
@@ -3556,7 +3596,7 @@ class GetTypeHintTests(BaseTestCase):
BA = Tuple[Annotated[T, (1, 0)], ...]
def barfoo(x: BA): ...
self.assertEqual(get_type_hints(barfoo, globals(), locals())['x'], Tuple[T, ...])
- self.assertIs(
+ self.assertEqual(
get_type_hints(barfoo, globals(), locals(), include_extras=True)['x'],
BA
)
@@ -3564,7 +3604,7 @@ class GetTypeHintTests(BaseTestCase):
BA = tuple[Annotated[T, (1, 0)], ...]
def barfoo(x: BA): ...
self.assertEqual(get_type_hints(barfoo, globals(), locals())['x'], tuple[T, ...])
- self.assertIs(
+ self.assertEqual(
get_type_hints(barfoo, globals(), locals(), include_extras=True)['x'],
BA
)
diff --git a/Lib/typing.py b/Lib/typing.py
index 27d83c5..360129e 100644
--- a/Lib/typing.py
+++ b/Lib/typing.py
@@ -336,6 +336,12 @@ def _eval_type(t, globalns, localns, recursive_guard=frozenset()):
if isinstance(t, ForwardRef):
return t._evaluate(globalns, localns, recursive_guard)
if isinstance(t, (_GenericAlias, GenericAlias, types.UnionType)):
+ if isinstance(t, GenericAlias):
+ args = tuple(
+ ForwardRef(arg) if isinstance(arg, str) else arg
+ for arg in t.__args__
+ )
+ t = t.__origin__[args]
ev_args = tuple(_eval_type(a, globalns, localns, recursive_guard) for a in t.__args__)
if ev_args == t.__args__:
return t
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 7b6f54a..d2b1a7c 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -917,6 +917,9 @@ Modules/Setup.local:
@# Create empty Setup.local when file was deleted by user
echo "# Edit this file for local setup changes" > $@
+Modules/Setup.bootstrap: $(srcdir)/Modules/Setup.bootstrap.in config.status
+ ./config.status $@
+
Modules/Setup.stdlib: $(srcdir)/Modules/Setup.stdlib.in config.status
./config.status $@
@@ -925,13 +928,13 @@ Makefile Modules/config.c: Makefile.pre \
$(MAKESETUP) \
$(srcdir)/Modules/Setup \
Modules/Setup.local \
- $(srcdir)/Modules/Setup.bootstrap \
+ Modules/Setup.bootstrap \
Modules/Setup.stdlib
$(SHELL) $(MAKESETUP) -c $(srcdir)/Modules/config.c.in \
-s Modules \
Modules/Setup.local \
@MODULES_SETUP_STDLIB@ \
- $(srcdir)/Modules/Setup.bootstrap \
+ Modules/Setup.bootstrap \
$(srcdir)/Modules/Setup
@mv config.c Modules
@echo "The Makefile was updated, you may need to re-run make."
@@ -2146,7 +2149,7 @@ libainstall: @DEF_MAKE_RULE@ python-config
$(INSTALL_DATA) $(srcdir)/Modules/config.c.in $(DESTDIR)$(LIBPL)/config.c.in
$(INSTALL_DATA) Makefile $(DESTDIR)$(LIBPL)/Makefile
$(INSTALL_DATA) $(srcdir)/Modules/Setup $(DESTDIR)$(LIBPL)/Setup
- $(INSTALL_DATA) $(srcdir)/Modules/Setup.bootstrap $(DESTDIR)$(LIBPL)/Setup.bootstrap
+ $(INSTALL_DATA) Modules/Setup.bootstrap $(DESTDIR)$(LIBPL)/Setup.bootstrap
$(INSTALL_DATA) Modules/Setup.stdlib $(DESTDIR)$(LIBPL)/Setup.stdlib
$(INSTALL_DATA) Modules/Setup.local $(DESTDIR)$(LIBPL)/Setup.local
$(INSTALL_DATA) Misc/python.pc $(DESTDIR)$(LIBPC)/python-$(VERSION).pc
@@ -2381,8 +2384,9 @@ distclean: clobber
for file in $(srcdir)/Lib/test/data/* ; do \
if test "$$file" != "$(srcdir)/Lib/test/data/README"; then rm "$$file"; fi; \
done
- -rm -f core Makefile Makefile.pre config.status Modules/Setup.local \
- Modules/Setup.stdlib Modules/ld_so_aix Modules/python.exp Misc/python.pc \
+ -rm -f core Makefile Makefile.pre config.status Modules/Setup.local
+ Modules/Setup.bootstrap Modules/Setup.stdlib \
+ Modules/ld_so_aix Modules/python.exp Misc/python.pc \
Misc/python-embed.pc Misc/python-config.sh
-rm -f python*-gdb.py
# Issue #28258: set LC_ALL to avoid issues with Estonian locale.
diff --git a/Misc/NEWS.d/next/Library/2022-01-27-11-54-16.bpo-41370.gYxCPE.rst b/Misc/NEWS.d/next/Library/2022-01-27-11-54-16.bpo-41370.gYxCPE.rst
new file mode 100644
index 0000000..d9ad2af
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-01-27-11-54-16.bpo-41370.gYxCPE.rst
@@ -0,0 +1 @@
+:func:`typing.get_type_hints` now supports evaluating strings as forward references in :ref:`PEP 585 generic aliases <types-genericalias>`.
diff --git a/Misc/NEWS.d/next/Library/2022-03-05-21-51-31.bpo-46933.6yzWtb.rst b/Misc/NEWS.d/next/Library/2022-03-05-21-51-31.bpo-46933.6yzWtb.rst
new file mode 100644
index 0000000..c3d2e6b
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2022-03-05-21-51-31.bpo-46933.6yzWtb.rst
@@ -0,0 +1 @@
+The :mod:`pwd` module is now optional. :func:`os.path.expanduser` returns the path when the :mod:`pwd` module is not available.
diff --git a/Misc/NEWS.d/next/Windows/2022-03-07-16-34-11.bpo-46948.Ufd4tG.rst b/Misc/NEWS.d/next/Windows/2022-03-07-16-34-11.bpo-46948.Ufd4tG.rst
new file mode 100644
index 0000000..cfc4827
--- /dev/null
+++ b/Misc/NEWS.d/next/Windows/2022-03-07-16-34-11.bpo-46948.Ufd4tG.rst
@@ -0,0 +1,2 @@
+Prevent CVE-2022-26488 by ensuring the Add to PATH option in the Windows
+installer uses the correct path when being repaired.
diff --git a/Modules/Setup.bootstrap b/Modules/Setup.bootstrap.in
index f23da60..ec72497 100644
--- a/Modules/Setup.bootstrap
+++ b/Modules/Setup.bootstrap.in
@@ -32,4 +32,4 @@ _stat _stat.c
_symtable symtablemodule.c
# for systems without $HOME env, used by site._getuserbase()
-pwd pwdmodule.c
+@MODULE_PWD_TRUE@pwd pwdmodule.c
diff --git a/Tools/msi/appendpath/appendpath.wxs b/Tools/msi/appendpath/appendpath.wxs
index e8d7a9d..bba186c 100644
--- a/Tools/msi/appendpath/appendpath.wxs
+++ b/Tools/msi/appendpath/appendpath.wxs
@@ -3,6 +3,7 @@
<Product Id="*" Language="!(loc.LCID)" Name="!(loc.Title)" Version="$(var.Version)" Manufacturer="!(loc.Manufacturer)" UpgradeCode="$(var.UpgradeCode)">
<Package InstallerVersion="500" Compressed="yes" InstallScope="perUser" />
+ <PropertyRef Id="DetectTargetDir" />
<PropertyRef Id="UpgradeTable" />
<PropertyRef Id="REGISTRYKEY" />
diff --git a/Tools/msi/bundle/bundle.wxs b/Tools/msi/bundle/bundle.wxs
index 0683f87..ac4b7a6 100644
--- a/Tools/msi/bundle/bundle.wxs
+++ b/Tools/msi/bundle/bundle.wxs
@@ -108,8 +108,8 @@
<PackageGroupRef Id="crt" />
<?endif ?>
<PackageGroupRef Id="core" />
- <PackageGroupRef Id="dev" />
<PackageGroupRef Id="exe" />
+ <PackageGroupRef Id="dev" />
<PackageGroupRef Id="lib" />
<PackageGroupRef Id="test" />
<PackageGroupRef Id="doc" />
diff --git a/Tools/msi/common.wxs b/Tools/msi/common.wxs
index 398d94a..d8f3cde 100644
--- a/Tools/msi/common.wxs
+++ b/Tools/msi/common.wxs
@@ -53,11 +53,23 @@
</Fragment>
<Fragment>
- <?ifdef InstallDirectoryGuidSeed ?>
<Directory Id="TARGETDIR" Name="SourceDir">
+ <?ifdef InstallDirectoryGuidSeed ?>
<Directory Id="InstallDirectory" ComponentGuidGenerationSeed="$(var.InstallDirectoryGuidSeed)" />
+ <?endif ?>
</Directory>
- <?endif ?>
+ </Fragment>
+
+ <Fragment>
+ <!-- Locate TARGETDIR automatically assuming we have executables installed -->
+ <Property Id="TARGETDIR">
+ <ComponentSearch Id="PythonExe_Directory" Guid="$(var.PythonExeComponentGuid)">
+ <DirectorySearch Id="PythonExe_Directory" AssignToProperty="yes" Path=".">
+ <FileSearch Id="PythonExe_DirectoryFile" Name="python.exe" />
+ </DirectorySearch>
+ </ComponentSearch>
+ </Property>
+ <Property Id="DetectTargetDir" Value="1" />
</Fragment>
<!-- Top-level directories -->
diff --git a/Tools/msi/dev/dev.wxs b/Tools/msi/dev/dev.wxs
index cfc4c44..15a0836 100644
--- a/Tools/msi/dev/dev.wxs
+++ b/Tools/msi/dev/dev.wxs
@@ -4,6 +4,7 @@
<Package InstallerVersion="500" Compressed="yes" InstallScope="perUser" />
<MediaTemplate EmbedCab="yes" CompressionLevel="high" />
+ <PropertyRef Id="DetectTargetDir" />
<PropertyRef Id="UpgradeTable" />
<Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
diff --git a/Tools/msi/doc/doc.wxs b/Tools/msi/doc/doc.wxs
index d05936f..1d7706b 100644
--- a/Tools/msi/doc/doc.wxs
+++ b/Tools/msi/doc/doc.wxs
@@ -4,6 +4,7 @@
<Package InstallerVersion="500" Compressed="yes" InstallScope="perUser" />
<MediaTemplate EmbedCab="yes" CompressionLevel="high" />
+ <PropertyRef Id="DetectTargetDir" />
<PropertyRef Id="UpgradeTable" />
<PropertyRef Id="REGISTRYKEY" />
diff --git a/Tools/msi/lib/lib.wxs b/Tools/msi/lib/lib.wxs
index 5c67420..e417e31 100644
--- a/Tools/msi/lib/lib.wxs
+++ b/Tools/msi/lib/lib.wxs
@@ -4,6 +4,7 @@
<Package InstallerVersion="500" Compressed="yes" InstallScope="perUser" />
<MediaTemplate EmbedCab="yes" CompressionLevel="high" />
+ <PropertyRef Id="DetectTargetDir" />
<PropertyRef Id="UpgradeTable" />
<PropertyRef Id="REGISTRYKEY" />
diff --git a/Tools/msi/path/path.wxs b/Tools/msi/path/path.wxs
index 496f9d0..3285439 100644
--- a/Tools/msi/path/path.wxs
+++ b/Tools/msi/path/path.wxs
@@ -2,7 +2,8 @@
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" Language="!(loc.LCID)" Name="!(loc.Title)" Version="$(var.Version)" Manufacturer="!(loc.Manufacturer)" UpgradeCode="$(var.UpgradeCode)">
<Package InstallerVersion="500" Compressed="yes" InstallScope="perUser" />
-
+
+ <PropertyRef Id="DetectTargetDir" />
<PropertyRef Id="UpgradeTable" />
<PropertyRef Id="REGISTRYKEY" />
diff --git a/Tools/msi/tcltk/tcltk.wxs b/Tools/msi/tcltk/tcltk.wxs
index fdd6da3..bad56d5 100644
--- a/Tools/msi/tcltk/tcltk.wxs
+++ b/Tools/msi/tcltk/tcltk.wxs
@@ -4,6 +4,7 @@
<Package InstallerVersion="500" Compressed="yes" InstallScope="perUser" />
<MediaTemplate EmbedCab="yes" CompressionLevel="high" />
+ <PropertyRef Id="DetectTargetDir" />
<PropertyRef Id="UpgradeTable" />
<PropertyRef Id="REGISTRYKEY" />
diff --git a/Tools/msi/test/test.wxs b/Tools/msi/test/test.wxs
index bf601f4..9e497e7 100644
--- a/Tools/msi/test/test.wxs
+++ b/Tools/msi/test/test.wxs
@@ -4,6 +4,7 @@
<Package InstallerVersion="500" Compressed="yes" InstallScope="perUser" />
<MediaTemplate EmbedCab="yes" CompressionLevel="high" />
+ <PropertyRef Id="DetectTargetDir" />
<PropertyRef Id="UpgradeTable" />
<PropertyRef Id="REGISTRYKEY" />
diff --git a/Tools/msi/tools/tools.wxs b/Tools/msi/tools/tools.wxs
index bb6436c..c06b3c2 100644
--- a/Tools/msi/tools/tools.wxs
+++ b/Tools/msi/tools/tools.wxs
@@ -4,6 +4,7 @@
<Package InstallerVersion="500" Compressed="yes" InstallScope="perUser" />
<MediaTemplate EmbedCab="yes" CompressionLevel="high" />
+ <PropertyRef Id="DetectTargetDir" />
<PropertyRef Id="UpgradeTable" />
<Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
diff --git a/Tools/msi/ucrt/ucrt.wxs b/Tools/msi/ucrt/ucrt.wxs
index 525130c..e9e2a9a 100644
--- a/Tools/msi/ucrt/ucrt.wxs
+++ b/Tools/msi/ucrt/ucrt.wxs
@@ -4,6 +4,7 @@
<Package InstallerVersion="500" Compressed="yes" InstallScope="perUser" />
<MediaTemplate EmbedCab="yes" CompressionLevel="high" />
+ <PropertyRef Id="DetectTargetDir" />
<PropertyRef Id="UpgradeTable" />
<PropertyRef Id="REGISTRYKEY" />
diff --git a/configure b/configure
index 07ecb80..a8e78ce 100755
--- a/configure
+++ b/configure
@@ -708,6 +708,8 @@ MODULE__SCPROXY_FALSE
MODULE__SCPROXY_TRUE
MODULE_RESOURCE_FALSE
MODULE_RESOURCE_TRUE
+MODULE_PWD_FALSE
+MODULE_PWD_TRUE
MODULE_OSSAUDIODEV_FALSE
MODULE_OSSAUDIODEV_TRUE
MODULE_GRP_FALSE
@@ -13767,7 +13769,7 @@ for ac_func in \
gai_strerror getegid getentropy geteuid getgid getgrgid getgrgid_r \
getgrnam_r getgrouplist getgroups getitimer getloadavg getlogin \
getpeername getpgid getpid getppid getpriority _getpty \
- getpwent getpwnam_r getpwuid_r getresgid getresuid getrusage getsid getspent \
+ getpwent getpwnam_r getpwuid getpwuid_r getresgid getresuid getrusage getsid getspent \
getspnam getuid getwd if_nameindex initgroups kill killpg lchown linkat \
lockf lstat lutimes madvise mbrtowc memrchr mkdirat mkfifo mkfifoat \
mknod mknodat mktime mmap mremap nice openat opendir pathconf pause pipe \
@@ -21331,32 +21333,106 @@ $as_echo "yes" >&6; }
fi
+
+
+# stdlib not available
case $ac_sys_system/$ac_sys_emscripten_target in #(
AIX/*) :
- py_stdlib_not_available="_scproxy spwd" ;; #(
+
+
+ py_cv_module__scproxy=n/a
+ py_cv_module_spwd=n/a
+ ;; #(
VxWorks*/*) :
- py_stdlib_not_available="_scproxy _crypt termios grp" ;; #(
+
+
+ py_cv_module__scproxy=n/a
+ py_cv_module__crypt=n/a
+ py_cv_module_termios=n/a
+ py_cv_module_grp=n/a
+ ;; #(
Darwin/*) :
- py_stdlib_not_available="ossaudiodev spwd" ;; #(
+
+
+ py_cv_module_ossaudiodev=n/a
+ py_cv_module_spwd=n/a
+ ;; #(
CYGWIN*/*) :
- py_stdlib_not_available="_scproxy nis" ;; #(
+
+
+ py_cv_module__scproxy=n/a
+ py_cv_module_nis=n/a
+ ;; #(
QNX*/*) :
- py_stdlib_not_available="_scproxy nis" ;; #(
+
+
+ py_cv_module__scproxy=n/a
+ py_cv_module_nis=n/a
+ ;; #(
FreeBSD*/*) :
- py_stdlib_not_available="_scproxy spwd" ;; #(
+
+
+ py_cv_module__scproxy=n/a
+ py_cv_module_spwd=n/a
+ ;; #(
Emscripten/browser) :
- py_stdlib_not_available="_ctypes _curses _curses_panel _dbm _gdbm _multiprocessing _posixshmem _posixsubprocess _scproxy _tkinter _xxsubinterpreters fcntl grp nis ossaudiodev resource readline spwd syslog termios"
+
+
+ py_cv_module__ctypes=n/a
+ py_cv_module__curses=n/a
+ py_cv_module__curses_panel=n/a
+ py_cv_module__dbm=n/a
+ py_cv_module__gdbm=n/a
+ py_cv_module__multiprocessing=n/a
+ py_cv_module__posixshmem=n/a
+ py_cv_module__posixsubprocess=n/a
+ py_cv_module__scproxy=n/a
+ py_cv_module__tkinter=n/a
+ py_cv_module__xxsubinterpreters=n/a
+ py_cv_module_fcntl=n/a
+ py_cv_module_grp=n/a
+ py_cv_module_nis=n/a
+ py_cv_module_ossaudiodev=n/a
+ py_cv_module_pwd=n/a
+ py_cv_module_resource=n/a
+ py_cv_module_readline=n/a
+ py_cv_module_spwd=n/a
+ py_cv_module_syslog=n/a
+ py_cv_module_termios=n/a
+ py_cv_module_=n/a
+
;; #(
Emscripten/node) :
- py_stdlib_not_available="_ctypes _curses _curses_panel _dbm _gdbm _scproxy _tkinter _xxsubinterpreters grp nis ossaudiodev spwd syslog"
+
+
+ py_cv_module__ctypes=n/a
+ py_cv_module__curses=n/a
+ py_cv_module__curses_panel=n/a
+ py_cv_module__dbm=n/a
+ py_cv_module__gdbm=n/a
+ py_cv_module__scproxy=n/a
+ py_cv_module__tkinter=n/a
+ py_cv_module__xxsubinterpreters=n/a
+ py_cv_module_grp=n/a
+ py_cv_module_nis=n/a
+ py_cv_module_ossaudiodev=n/a
+ py_cv_module_pwd=n/a
+ py_cv_module_spwd=n/a
+ py_cv_module_syslog=n/a
+ py_cv_module_=n/a
+
;; #(
*) :
- py_stdlib_not_available="_scproxy"
+
+
+ py_cv_module__scproxy=n/a
+
;;
esac
+
case $host_cpu in #(
wasm32|wasm64) :
MODULE_BUILDTYPE=static ;; #(
@@ -21390,13 +21466,9 @@ MODULE_BLOCK=
- case $py_stdlib_not_available in #(
- *_io*) :
- py_cv_module__io=n/a ;; #(
- *) :
- py_cv_module__io=yes
- ;;
-esac
+ if test "$py_cv_module__io" != "n/a"; then :
+ py_cv_module__io=yes
+fi
if test "$py_cv_module__io" = yes; then
MODULE__IO_TRUE=
MODULE__IO_FALSE='#'
@@ -21414,13 +21486,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *time*) :
- py_cv_module_time=n/a ;; #(
- *) :
- py_cv_module_time=yes
- ;;
-esac
+ if test "$py_cv_module_time" != "n/a"; then :
+ py_cv_module_time=yes
+fi
if test "$py_cv_module_time" = yes; then
MODULE_TIME_TRUE=
MODULE_TIME_FALSE='#'
@@ -21439,13 +21507,9 @@ fi
- case $py_stdlib_not_available in #(
- *array*) :
- py_cv_module_array=n/a ;; #(
- *) :
- py_cv_module_array=yes
- ;;
-esac
+ if test "$py_cv_module_array" != "n/a"; then :
+ py_cv_module_array=yes
+fi
if test "$py_cv_module_array" = yes; then
MODULE_ARRAY_TRUE=
MODULE_ARRAY_FALSE='#'
@@ -21463,13 +21527,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_asyncio*) :
- py_cv_module__asyncio=n/a ;; #(
- *) :
- py_cv_module__asyncio=yes
- ;;
-esac
+ if test "$py_cv_module__asyncio" != "n/a"; then :
+ py_cv_module__asyncio=yes
+fi
if test "$py_cv_module__asyncio" = yes; then
MODULE__ASYNCIO_TRUE=
MODULE__ASYNCIO_FALSE='#'
@@ -21487,13 +21547,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_bisect*) :
- py_cv_module__bisect=n/a ;; #(
- *) :
- py_cv_module__bisect=yes
- ;;
-esac
+ if test "$py_cv_module__bisect" != "n/a"; then :
+ py_cv_module__bisect=yes
+fi
if test "$py_cv_module__bisect" = yes; then
MODULE__BISECT_TRUE=
MODULE__BISECT_FALSE='#'
@@ -21511,13 +21567,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_contextvars*) :
- py_cv_module__contextvars=n/a ;; #(
- *) :
- py_cv_module__contextvars=yes
- ;;
-esac
+ if test "$py_cv_module__contextvars" != "n/a"; then :
+ py_cv_module__contextvars=yes
+fi
if test "$py_cv_module__contextvars" = yes; then
MODULE__CONTEXTVARS_TRUE=
MODULE__CONTEXTVARS_FALSE='#'
@@ -21535,13 +21587,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_csv*) :
- py_cv_module__csv=n/a ;; #(
- *) :
- py_cv_module__csv=yes
- ;;
-esac
+ if test "$py_cv_module__csv" != "n/a"; then :
+ py_cv_module__csv=yes
+fi
if test "$py_cv_module__csv" = yes; then
MODULE__CSV_TRUE=
MODULE__CSV_FALSE='#'
@@ -21559,13 +21607,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_heapq*) :
- py_cv_module__heapq=n/a ;; #(
- *) :
- py_cv_module__heapq=yes
- ;;
-esac
+ if test "$py_cv_module__heapq" != "n/a"; then :
+ py_cv_module__heapq=yes
+fi
if test "$py_cv_module__heapq" = yes; then
MODULE__HEAPQ_TRUE=
MODULE__HEAPQ_FALSE='#'
@@ -21583,13 +21627,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_json*) :
- py_cv_module__json=n/a ;; #(
- *) :
- py_cv_module__json=yes
- ;;
-esac
+ if test "$py_cv_module__json" != "n/a"; then :
+ py_cv_module__json=yes
+fi
if test "$py_cv_module__json" = yes; then
MODULE__JSON_TRUE=
MODULE__JSON_FALSE='#'
@@ -21607,13 +21647,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_lsprof*) :
- py_cv_module__lsprof=n/a ;; #(
- *) :
- py_cv_module__lsprof=yes
- ;;
-esac
+ if test "$py_cv_module__lsprof" != "n/a"; then :
+ py_cv_module__lsprof=yes
+fi
if test "$py_cv_module__lsprof" = yes; then
MODULE__LSPROF_TRUE=
MODULE__LSPROF_FALSE='#'
@@ -21631,13 +21667,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_opcode*) :
- py_cv_module__opcode=n/a ;; #(
- *) :
- py_cv_module__opcode=yes
- ;;
-esac
+ if test "$py_cv_module__opcode" != "n/a"; then :
+ py_cv_module__opcode=yes
+fi
if test "$py_cv_module__opcode" = yes; then
MODULE__OPCODE_TRUE=
MODULE__OPCODE_FALSE='#'
@@ -21655,13 +21687,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_pickle*) :
- py_cv_module__pickle=n/a ;; #(
- *) :
- py_cv_module__pickle=yes
- ;;
-esac
+ if test "$py_cv_module__pickle" != "n/a"; then :
+ py_cv_module__pickle=yes
+fi
if test "$py_cv_module__pickle" = yes; then
MODULE__PICKLE_TRUE=
MODULE__PICKLE_FALSE='#'
@@ -21679,13 +21707,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_posixsubprocess*) :
- py_cv_module__posixsubprocess=n/a ;; #(
- *) :
- py_cv_module__posixsubprocess=yes
- ;;
-esac
+ if test "$py_cv_module__posixsubprocess" != "n/a"; then :
+ py_cv_module__posixsubprocess=yes
+fi
if test "$py_cv_module__posixsubprocess" = yes; then
MODULE__POSIXSUBPROCESS_TRUE=
MODULE__POSIXSUBPROCESS_FALSE='#'
@@ -21703,13 +21727,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_queue*) :
- py_cv_module__queue=n/a ;; #(
- *) :
- py_cv_module__queue=yes
- ;;
-esac
+ if test "$py_cv_module__queue" != "n/a"; then :
+ py_cv_module__queue=yes
+fi
if test "$py_cv_module__queue" = yes; then
MODULE__QUEUE_TRUE=
MODULE__QUEUE_FALSE='#'
@@ -21727,13 +21747,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_random*) :
- py_cv_module__random=n/a ;; #(
- *) :
- py_cv_module__random=yes
- ;;
-esac
+ if test "$py_cv_module__random" != "n/a"; then :
+ py_cv_module__random=yes
+fi
if test "$py_cv_module__random" = yes; then
MODULE__RANDOM_TRUE=
MODULE__RANDOM_FALSE='#'
@@ -21751,13 +21767,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *select*) :
- py_cv_module_select=n/a ;; #(
- *) :
- py_cv_module_select=yes
- ;;
-esac
+ if test "$py_cv_module_select" != "n/a"; then :
+ py_cv_module_select=yes
+fi
if test "$py_cv_module_select" = yes; then
MODULE_SELECT_TRUE=
MODULE_SELECT_FALSE='#'
@@ -21775,13 +21787,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_struct*) :
- py_cv_module__struct=n/a ;; #(
- *) :
- py_cv_module__struct=yes
- ;;
-esac
+ if test "$py_cv_module__struct" != "n/a"; then :
+ py_cv_module__struct=yes
+fi
if test "$py_cv_module__struct" = yes; then
MODULE__STRUCT_TRUE=
MODULE__STRUCT_FALSE='#'
@@ -21799,13 +21807,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_typing*) :
- py_cv_module__typing=n/a ;; #(
- *) :
- py_cv_module__typing=yes
- ;;
-esac
+ if test "$py_cv_module__typing" != "n/a"; then :
+ py_cv_module__typing=yes
+fi
if test "$py_cv_module__typing" = yes; then
MODULE__TYPING_TRUE=
MODULE__TYPING_FALSE='#'
@@ -21823,13 +21827,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_xxsubinterpreters*) :
- py_cv_module__xxsubinterpreters=n/a ;; #(
- *) :
- py_cv_module__xxsubinterpreters=yes
- ;;
-esac
+ if test "$py_cv_module__xxsubinterpreters" != "n/a"; then :
+ py_cv_module__xxsubinterpreters=yes
+fi
if test "$py_cv_module__xxsubinterpreters" = yes; then
MODULE__XXSUBINTERPRETERS_TRUE=
MODULE__XXSUBINTERPRETERS_FALSE='#'
@@ -21847,13 +21847,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_zoneinfo*) :
- py_cv_module__zoneinfo=n/a ;; #(
- *) :
- py_cv_module__zoneinfo=yes
- ;;
-esac
+ if test "$py_cv_module__zoneinfo" != "n/a"; then :
+ py_cv_module__zoneinfo=yes
+fi
if test "$py_cv_module__zoneinfo" = yes; then
MODULE__ZONEINFO_TRUE=
MODULE__ZONEINFO_FALSE='#'
@@ -21874,10 +21870,8 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _multiprocessing" >&5
$as_echo_n "checking for stdlib extension module _multiprocessing... " >&6; }
- case $py_stdlib_not_available in #(
- *_multiprocessing*) :
- py_cv_module__multiprocessing=n/a ;; #(
- *) :
+ if test "$py_cv_module__multiprocessing" != "n/a"; then :
+
if true; then :
if test "$ac_cv_func_sem_unlink" = "yes"; then :
py_cv_module__multiprocessing=yes
@@ -21887,8 +21881,8 @@ fi
else
py_cv_module__multiprocessing=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__MULTIPROCESSING=$py_cv_module__multiprocessing$as_nl"
if test "x$py_cv_module__multiprocessing" = xyes; then :
@@ -21910,10 +21904,8 @@ $as_echo "$py_cv_module__multiprocessing" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _posixshmem" >&5
$as_echo_n "checking for stdlib extension module _posixshmem... " >&6; }
- case $py_stdlib_not_available in #(
- *_posixshmem*) :
- py_cv_module__posixshmem=n/a ;; #(
- *) :
+ if test "$py_cv_module__posixshmem" != "n/a"; then :
+
if true; then :
if test "$have_posix_shmem" = "yes"; then :
py_cv_module__posixshmem=yes
@@ -21923,8 +21915,8 @@ fi
else
py_cv_module__posixshmem=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__POSIXSHMEM=$py_cv_module__posixshmem$as_nl"
if test "x$py_cv_module__posixshmem" = xyes; then :
@@ -21945,13 +21937,9 @@ $as_echo "$py_cv_module__posixshmem" >&6; }
- case $py_stdlib_not_available in #(
- *audioop*) :
- py_cv_module_audioop=n/a ;; #(
- *) :
- py_cv_module_audioop=yes
- ;;
-esac
+ if test "$py_cv_module_audioop" != "n/a"; then :
+ py_cv_module_audioop=yes
+fi
if test "$py_cv_module_audioop" = yes; then
MODULE_AUDIOOP_TRUE=
MODULE_AUDIOOP_FALSE='#'
@@ -21969,13 +21957,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_statistics*) :
- py_cv_module__statistics=n/a ;; #(
- *) :
- py_cv_module__statistics=yes
- ;;
-esac
+ if test "$py_cv_module__statistics" != "n/a"; then :
+ py_cv_module__statistics=yes
+fi
if test "$py_cv_module__statistics" = yes; then
MODULE__STATISTICS_TRUE=
MODULE__STATISTICS_FALSE='#'
@@ -21993,13 +21977,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *cmath*) :
- py_cv_module_cmath=n/a ;; #(
- *) :
- py_cv_module_cmath=yes
- ;;
-esac
+ if test "$py_cv_module_cmath" != "n/a"; then :
+ py_cv_module_cmath=yes
+fi
if test "$py_cv_module_cmath" = yes; then
MODULE_CMATH_TRUE=
MODULE_CMATH_FALSE='#'
@@ -22017,13 +21997,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *math*) :
- py_cv_module_math=n/a ;; #(
- *) :
- py_cv_module_math=yes
- ;;
-esac
+ if test "$py_cv_module_math" != "n/a"; then :
+ py_cv_module_math=yes
+fi
if test "$py_cv_module_math" = yes; then
MODULE_MATH_TRUE=
MODULE_MATH_FALSE='#'
@@ -22042,13 +22018,9 @@ fi
- case $py_stdlib_not_available in #(
- *_datetime*) :
- py_cv_module__datetime=n/a ;; #(
- *) :
- py_cv_module__datetime=yes
- ;;
-esac
+ if test "$py_cv_module__datetime" != "n/a"; then :
+ py_cv_module__datetime=yes
+fi
if test "$py_cv_module__datetime" = yes; then
MODULE__DATETIME_TRUE=
MODULE__DATETIME_FALSE='#'
@@ -22069,10 +22041,8 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module fcntl" >&5
$as_echo_n "checking for stdlib extension module fcntl... " >&6; }
- case $py_stdlib_not_available in #(
- *fcntl*) :
- py_cv_module_fcntl=n/a ;; #(
- *) :
+ if test "$py_cv_module_fcntl" != "n/a"; then :
+
if true; then :
if test "$ac_cv_header_sys_ioctl_h" = "yes" -a "$ac_cv_header_fcntl_h" = "yes"; then :
py_cv_module_fcntl=yes
@@ -22082,8 +22052,8 @@ fi
else
py_cv_module_fcntl=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE_FCNTL=$py_cv_module_fcntl$as_nl"
if test "x$py_cv_module_fcntl" = xyes; then :
@@ -22105,10 +22075,8 @@ $as_echo "$py_cv_module_fcntl" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module mmap" >&5
$as_echo_n "checking for stdlib extension module mmap... " >&6; }
- case $py_stdlib_not_available in #(
- *mmap*) :
- py_cv_module_mmap=n/a ;; #(
- *) :
+ if test "$py_cv_module_mmap" != "n/a"; then :
+
if true; then :
if test "$ac_cv_header_sys_mman_h" = "yes" -a "$ac_cv_header_sys_stat_h" = "yes"; then :
py_cv_module_mmap=yes
@@ -22118,8 +22086,8 @@ fi
else
py_cv_module_mmap=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE_MMAP=$py_cv_module_mmap$as_nl"
if test "x$py_cv_module_mmap" = xyes; then :
@@ -22141,10 +22109,8 @@ $as_echo "$py_cv_module_mmap" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _socket" >&5
$as_echo_n "checking for stdlib extension module _socket... " >&6; }
- case $py_stdlib_not_available in #(
- *_socket*) :
- py_cv_module__socket=n/a ;; #(
- *) :
+ if test "$py_cv_module__socket" != "n/a"; then :
+
if true; then :
if test "$ac_cv_header_sys_socket_h" = "yes" -a "$ac_cv_header_sys_types_h" = "yes" -a "$ac_cv_header_netinet_in_h" = "yes"; then :
py_cv_module__socket=yes
@@ -22154,8 +22120,8 @@ fi
else
py_cv_module__socket=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__SOCKET=$py_cv_module__socket$as_nl"
if test "x$py_cv_module__socket" = xyes; then :
@@ -22178,10 +22144,8 @@ $as_echo "$py_cv_module__socket" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module grp" >&5
$as_echo_n "checking for stdlib extension module grp... " >&6; }
- case $py_stdlib_not_available in #(
- *grp*) :
- py_cv_module_grp=n/a ;; #(
- *) :
+ if test "$py_cv_module_grp" != "n/a"; then :
+
if true; then :
if test "$ac_cv_func_getgrgid" = yes -o "$ac_cv_func_getgrgid_r" = yes; then :
py_cv_module_grp=yes
@@ -22191,8 +22155,8 @@ fi
else
py_cv_module_grp=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE_GRP=$py_cv_module_grp$as_nl"
if test "x$py_cv_module_grp" = xyes; then :
@@ -22214,10 +22178,8 @@ $as_echo "$py_cv_module_grp" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module ossaudiodev" >&5
$as_echo_n "checking for stdlib extension module ossaudiodev... " >&6; }
- case $py_stdlib_not_available in #(
- *ossaudiodev*) :
- py_cv_module_ossaudiodev=n/a ;; #(
- *) :
+ if test "$py_cv_module_ossaudiodev" != "n/a"; then :
+
if true; then :
if test "$ac_cv_header_linux_soundcard_h" = yes -o "$ac_cv_header_sys_soundcard_h" = yes; then :
py_cv_module_ossaudiodev=yes
@@ -22227,8 +22189,8 @@ fi
else
py_cv_module_ossaudiodev=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE_OSSAUDIODEV=$py_cv_module_ossaudiodev$as_nl"
if test "x$py_cv_module_ossaudiodev" = xyes; then :
@@ -22248,12 +22210,44 @@ fi
$as_echo "$py_cv_module_ossaudiodev" >&6; }
+ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module pwd" >&5
+$as_echo_n "checking for stdlib extension module pwd... " >&6; }
+ if test "$py_cv_module_pwd" != "n/a"; then :
+
+ if true; then :
+ if test "$ac_cv_func_getpwuid" = yes -o "$ac_cv_func_getpwuid_r" = yes; then :
+ py_cv_module_pwd=yes
+else
+ py_cv_module_pwd=missing
+fi
+else
+ py_cv_module_pwd=disabled
+fi
+
+fi
+ as_fn_append MODULE_BLOCK "MODULE_PWD=$py_cv_module_pwd$as_nl"
+ if test "x$py_cv_module_pwd" = xyes; then :
+
+
+
+
+fi
+ if test "$py_cv_module_pwd" = yes; then
+ MODULE_PWD_TRUE=
+ MODULE_PWD_FALSE='#'
+else
+ MODULE_PWD_TRUE='#'
+ MODULE_PWD_FALSE=
+fi
+
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: $py_cv_module_pwd" >&5
+$as_echo "$py_cv_module_pwd" >&6; }
+
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module resource" >&5
$as_echo_n "checking for stdlib extension module resource... " >&6; }
- case $py_stdlib_not_available in #(
- *resource*) :
- py_cv_module_resource=n/a ;; #(
- *) :
+ if test "$py_cv_module_resource" != "n/a"; then :
+
if true; then :
if test "$ac_cv_header_sys_resource_h" = yes; then :
py_cv_module_resource=yes
@@ -22263,8 +22257,8 @@ fi
else
py_cv_module_resource=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE_RESOURCE=$py_cv_module_resource$as_nl"
if test "x$py_cv_module_resource" = xyes; then :
@@ -22286,10 +22280,8 @@ $as_echo "$py_cv_module_resource" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _scproxy" >&5
$as_echo_n "checking for stdlib extension module _scproxy... " >&6; }
- case $py_stdlib_not_available in #(
- *_scproxy*) :
- py_cv_module__scproxy=n/a ;; #(
- *) :
+ if test "$py_cv_module__scproxy" != "n/a"; then :
+
if test "$ac_sys_system" = "Darwin"; then :
if true; then :
py_cv_module__scproxy=yes
@@ -22299,8 +22291,8 @@ fi
else
py_cv_module__scproxy=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__SCPROXY=$py_cv_module__scproxy$as_nl"
if test "x$py_cv_module__scproxy" = xyes; then :
@@ -22322,10 +22314,8 @@ $as_echo "$py_cv_module__scproxy" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module spwd" >&5
$as_echo_n "checking for stdlib extension module spwd... " >&6; }
- case $py_stdlib_not_available in #(
- *spwd*) :
- py_cv_module_spwd=n/a ;; #(
- *) :
+ if test "$py_cv_module_spwd" != "n/a"; then :
+
if true; then :
if test "$ac_cv_func_getspent" = yes -o "$ac_cv_func_getspnam" = yes; then :
py_cv_module_spwd=yes
@@ -22335,8 +22325,8 @@ fi
else
py_cv_module_spwd=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE_SPWD=$py_cv_module_spwd$as_nl"
if test "x$py_cv_module_spwd" = xyes; then :
@@ -22358,10 +22348,8 @@ $as_echo "$py_cv_module_spwd" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module syslog" >&5
$as_echo_n "checking for stdlib extension module syslog... " >&6; }
- case $py_stdlib_not_available in #(
- *syslog*) :
- py_cv_module_syslog=n/a ;; #(
- *) :
+ if test "$py_cv_module_syslog" != "n/a"; then :
+
if true; then :
if test "$ac_cv_header_syslog_h" = yes; then :
py_cv_module_syslog=yes
@@ -22371,8 +22359,8 @@ fi
else
py_cv_module_syslog=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE_SYSLOG=$py_cv_module_syslog$as_nl"
if test "x$py_cv_module_syslog" = xyes; then :
@@ -22394,10 +22382,8 @@ $as_echo "$py_cv_module_syslog" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module termios" >&5
$as_echo_n "checking for stdlib extension module termios... " >&6; }
- case $py_stdlib_not_available in #(
- *termios*) :
- py_cv_module_termios=n/a ;; #(
- *) :
+ if test "$py_cv_module_termios" != "n/a"; then :
+
if true; then :
if test "$ac_cv_header_termios_h" = yes; then :
py_cv_module_termios=yes
@@ -22407,8 +22393,8 @@ fi
else
py_cv_module_termios=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE_TERMIOS=$py_cv_module_termios$as_nl"
if test "x$py_cv_module_termios" = xyes; then :
@@ -22431,10 +22417,8 @@ $as_echo "$py_cv_module_termios" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module pyexpat" >&5
$as_echo_n "checking for stdlib extension module pyexpat... " >&6; }
- case $py_stdlib_not_available in #(
- *pyexpat*) :
- py_cv_module_pyexpat=n/a ;; #(
- *) :
+ if test "$py_cv_module_pyexpat" != "n/a"; then :
+
if true; then :
if true; then :
py_cv_module_pyexpat=yes
@@ -22444,8 +22428,8 @@ fi
else
py_cv_module_pyexpat=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE_PYEXPAT=$py_cv_module_pyexpat$as_nl"
if test "x$py_cv_module_pyexpat" = xyes; then :
@@ -22467,10 +22451,8 @@ $as_echo "$py_cv_module_pyexpat" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _elementtree" >&5
$as_echo_n "checking for stdlib extension module _elementtree... " >&6; }
- case $py_stdlib_not_available in #(
- *_elementtree*) :
- py_cv_module__elementtree=n/a ;; #(
- *) :
+ if test "$py_cv_module__elementtree" != "n/a"; then :
+
if true; then :
if true; then :
py_cv_module__elementtree=yes
@@ -22480,8 +22462,8 @@ fi
else
py_cv_module__elementtree=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__ELEMENTTREE=$py_cv_module__elementtree$as_nl"
if test "x$py_cv_module__elementtree" = xyes; then :
@@ -22501,13 +22483,9 @@ fi
$as_echo "$py_cv_module__elementtree" >&6; }
- case $py_stdlib_not_available in #(
- *_codecs_cn*) :
- py_cv_module__codecs_cn=n/a ;; #(
- *) :
- py_cv_module__codecs_cn=yes
- ;;
-esac
+ if test "$py_cv_module__codecs_cn" != "n/a"; then :
+ py_cv_module__codecs_cn=yes
+fi
if test "$py_cv_module__codecs_cn" = yes; then
MODULE__CODECS_CN_TRUE=
MODULE__CODECS_CN_FALSE='#'
@@ -22525,13 +22503,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_codecs_hk*) :
- py_cv_module__codecs_hk=n/a ;; #(
- *) :
- py_cv_module__codecs_hk=yes
- ;;
-esac
+ if test "$py_cv_module__codecs_hk" != "n/a"; then :
+ py_cv_module__codecs_hk=yes
+fi
if test "$py_cv_module__codecs_hk" = yes; then
MODULE__CODECS_HK_TRUE=
MODULE__CODECS_HK_FALSE='#'
@@ -22549,13 +22523,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_codecs_iso2022*) :
- py_cv_module__codecs_iso2022=n/a ;; #(
- *) :
- py_cv_module__codecs_iso2022=yes
- ;;
-esac
+ if test "$py_cv_module__codecs_iso2022" != "n/a"; then :
+ py_cv_module__codecs_iso2022=yes
+fi
if test "$py_cv_module__codecs_iso2022" = yes; then
MODULE__CODECS_ISO2022_TRUE=
MODULE__CODECS_ISO2022_FALSE='#'
@@ -22573,13 +22543,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_codecs_jp*) :
- py_cv_module__codecs_jp=n/a ;; #(
- *) :
- py_cv_module__codecs_jp=yes
- ;;
-esac
+ if test "$py_cv_module__codecs_jp" != "n/a"; then :
+ py_cv_module__codecs_jp=yes
+fi
if test "$py_cv_module__codecs_jp" = yes; then
MODULE__CODECS_JP_TRUE=
MODULE__CODECS_JP_FALSE='#'
@@ -22597,13 +22563,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_codecs_kr*) :
- py_cv_module__codecs_kr=n/a ;; #(
- *) :
- py_cv_module__codecs_kr=yes
- ;;
-esac
+ if test "$py_cv_module__codecs_kr" != "n/a"; then :
+ py_cv_module__codecs_kr=yes
+fi
if test "$py_cv_module__codecs_kr" = yes; then
MODULE__CODECS_KR_TRUE=
MODULE__CODECS_KR_FALSE='#'
@@ -22621,13 +22583,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_codecs_tw*) :
- py_cv_module__codecs_tw=n/a ;; #(
- *) :
- py_cv_module__codecs_tw=yes
- ;;
-esac
+ if test "$py_cv_module__codecs_tw" != "n/a"; then :
+ py_cv_module__codecs_tw=yes
+fi
if test "$py_cv_module__codecs_tw" = yes; then
MODULE__CODECS_TW_TRUE=
MODULE__CODECS_TW_FALSE='#'
@@ -22645,13 +22603,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *_multibytecodec*) :
- py_cv_module__multibytecodec=n/a ;; #(
- *) :
- py_cv_module__multibytecodec=yes
- ;;
-esac
+ if test "$py_cv_module__multibytecodec" != "n/a"; then :
+ py_cv_module__multibytecodec=yes
+fi
if test "$py_cv_module__multibytecodec" = yes; then
MODULE__MULTIBYTECODEC_TRUE=
MODULE__MULTIBYTECODEC_FALSE='#'
@@ -22669,13 +22623,9 @@ fi
fi
- case $py_stdlib_not_available in #(
- *unicodedata*) :
- py_cv_module_unicodedata=n/a ;; #(
- *) :
- py_cv_module_unicodedata=yes
- ;;
-esac
+ if test "$py_cv_module_unicodedata" != "n/a"; then :
+ py_cv_module_unicodedata=yes
+fi
if test "$py_cv_module_unicodedata" = yes; then
MODULE_UNICODEDATA_TRUE=
MODULE_UNICODEDATA_FALSE='#'
@@ -22696,10 +22646,8 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _md5" >&5
$as_echo_n "checking for stdlib extension module _md5... " >&6; }
- case $py_stdlib_not_available in #(
- *_md5*) :
- py_cv_module__md5=n/a ;; #(
- *) :
+ if test "$py_cv_module__md5" != "n/a"; then :
+
if test "$with_builtin_md5" = yes; then :
if true; then :
py_cv_module__md5=yes
@@ -22709,8 +22657,8 @@ fi
else
py_cv_module__md5=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__MD5=$py_cv_module__md5$as_nl"
if test "x$py_cv_module__md5" = xyes; then :
@@ -22732,10 +22680,8 @@ $as_echo "$py_cv_module__md5" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _sha1" >&5
$as_echo_n "checking for stdlib extension module _sha1... " >&6; }
- case $py_stdlib_not_available in #(
- *_sha1*) :
- py_cv_module__sha1=n/a ;; #(
- *) :
+ if test "$py_cv_module__sha1" != "n/a"; then :
+
if test "$with_builtin_sha1" = yes; then :
if true; then :
py_cv_module__sha1=yes
@@ -22745,8 +22691,8 @@ fi
else
py_cv_module__sha1=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__SHA1=$py_cv_module__sha1$as_nl"
if test "x$py_cv_module__sha1" = xyes; then :
@@ -22768,10 +22714,8 @@ $as_echo "$py_cv_module__sha1" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _sha256" >&5
$as_echo_n "checking for stdlib extension module _sha256... " >&6; }
- case $py_stdlib_not_available in #(
- *_sha256*) :
- py_cv_module__sha256=n/a ;; #(
- *) :
+ if test "$py_cv_module__sha256" != "n/a"; then :
+
if test "$with_builtin_sha256" = yes; then :
if true; then :
py_cv_module__sha256=yes
@@ -22781,8 +22725,8 @@ fi
else
py_cv_module__sha256=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__SHA256=$py_cv_module__sha256$as_nl"
if test "x$py_cv_module__sha256" = xyes; then :
@@ -22804,10 +22748,8 @@ $as_echo "$py_cv_module__sha256" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _sha512" >&5
$as_echo_n "checking for stdlib extension module _sha512... " >&6; }
- case $py_stdlib_not_available in #(
- *_sha512*) :
- py_cv_module__sha512=n/a ;; #(
- *) :
+ if test "$py_cv_module__sha512" != "n/a"; then :
+
if test "$with_builtin_sha512" = yes; then :
if true; then :
py_cv_module__sha512=yes
@@ -22817,8 +22759,8 @@ fi
else
py_cv_module__sha512=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__SHA512=$py_cv_module__sha512$as_nl"
if test "x$py_cv_module__sha512" = xyes; then :
@@ -22840,10 +22782,8 @@ $as_echo "$py_cv_module__sha512" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _sha3" >&5
$as_echo_n "checking for stdlib extension module _sha3... " >&6; }
- case $py_stdlib_not_available in #(
- *_sha3*) :
- py_cv_module__sha3=n/a ;; #(
- *) :
+ if test "$py_cv_module__sha3" != "n/a"; then :
+
if test "$with_builtin_sha3" = yes; then :
if true; then :
py_cv_module__sha3=yes
@@ -22853,8 +22793,8 @@ fi
else
py_cv_module__sha3=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__SHA3=$py_cv_module__sha3$as_nl"
if test "x$py_cv_module__sha3" = xyes; then :
@@ -22876,10 +22816,8 @@ $as_echo "$py_cv_module__sha3" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _blake2" >&5
$as_echo_n "checking for stdlib extension module _blake2... " >&6; }
- case $py_stdlib_not_available in #(
- *_blake2*) :
- py_cv_module__blake2=n/a ;; #(
- *) :
+ if test "$py_cv_module__blake2" != "n/a"; then :
+
if test "$with_builtin_blake2" = yes; then :
if true; then :
py_cv_module__blake2=yes
@@ -22889,8 +22827,8 @@ fi
else
py_cv_module__blake2=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__BLAKE2=$py_cv_module__blake2$as_nl"
if test "x$py_cv_module__blake2" = xyes; then :
@@ -22913,10 +22851,8 @@ $as_echo "$py_cv_module__blake2" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _crypt" >&5
$as_echo_n "checking for stdlib extension module _crypt... " >&6; }
- case $py_stdlib_not_available in #(
- *_crypt*) :
- py_cv_module__crypt=n/a ;; #(
- *) :
+ if test "$py_cv_module__crypt" != "n/a"; then :
+
if true; then :
if test "$ac_cv_crypt_crypt" = yes; then :
py_cv_module__crypt=yes
@@ -22926,8 +22862,8 @@ fi
else
py_cv_module__crypt=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__CRYPT=$py_cv_module__crypt$as_nl"
if test "x$py_cv_module__crypt" = xyes; then :
@@ -22949,10 +22885,8 @@ $as_echo "$py_cv_module__crypt" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _decimal" >&5
$as_echo_n "checking for stdlib extension module _decimal... " >&6; }
- case $py_stdlib_not_available in #(
- *_decimal*) :
- py_cv_module__decimal=n/a ;; #(
- *) :
+ if test "$py_cv_module__decimal" != "n/a"; then :
+
if true; then :
if true; then :
py_cv_module__decimal=yes
@@ -22962,8 +22896,8 @@ fi
else
py_cv_module__decimal=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__DECIMAL=$py_cv_module__decimal$as_nl"
if test "x$py_cv_module__decimal" = xyes; then :
@@ -22985,10 +22919,8 @@ $as_echo "$py_cv_module__decimal" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _gdbm" >&5
$as_echo_n "checking for stdlib extension module _gdbm... " >&6; }
- case $py_stdlib_not_available in #(
- *_gdbm*) :
- py_cv_module__gdbm=n/a ;; #(
- *) :
+ if test "$py_cv_module__gdbm" != "n/a"; then :
+
if test "$have_gdbm_dbmliborder" = yes; then :
if test "$have_gdbm" = yes; then :
py_cv_module__gdbm=yes
@@ -22998,8 +22930,8 @@ fi
else
py_cv_module__gdbm=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__GDBM=$py_cv_module__gdbm$as_nl"
if test "x$py_cv_module__gdbm" = xyes; then :
@@ -23021,10 +22953,8 @@ $as_echo "$py_cv_module__gdbm" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module nis" >&5
$as_echo_n "checking for stdlib extension module nis... " >&6; }
- case $py_stdlib_not_available in #(
- *nis*) :
- py_cv_module_nis=n/a ;; #(
- *) :
+ if test "$py_cv_module_nis" != "n/a"; then :
+
if true; then :
if test "$have_nis" = yes -a "$ac_cv_header_rpc_rpc_h" = yes; then :
py_cv_module_nis=yes
@@ -23034,8 +22964,8 @@ fi
else
py_cv_module_nis=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE_NIS=$py_cv_module_nis$as_nl"
if test "x$py_cv_module_nis" = xyes; then :
@@ -23057,10 +22987,8 @@ $as_echo "$py_cv_module_nis" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _sqlite3" >&5
$as_echo_n "checking for stdlib extension module _sqlite3... " >&6; }
- case $py_stdlib_not_available in #(
- *_sqlite3*) :
- py_cv_module__sqlite3=n/a ;; #(
- *) :
+ if test "$py_cv_module__sqlite3" != "n/a"; then :
+
if test "$have_sqlite3" = "yes"; then :
if test "$have_supported_sqlite3" = "yes"; then :
py_cv_module__sqlite3=yes
@@ -23070,8 +22998,8 @@ fi
else
py_cv_module__sqlite3=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__SQLITE3=$py_cv_module__sqlite3$as_nl"
if test "x$py_cv_module__sqlite3" = xyes; then :
@@ -23093,10 +23021,8 @@ $as_echo "$py_cv_module__sqlite3" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _uuid" >&5
$as_echo_n "checking for stdlib extension module _uuid... " >&6; }
- case $py_stdlib_not_available in #(
- *_uuid*) :
- py_cv_module__uuid=n/a ;; #(
- *) :
+ if test "$py_cv_module__uuid" != "n/a"; then :
+
if true; then :
if test "$have_uuid" = "yes"; then :
py_cv_module__uuid=yes
@@ -23106,8 +23032,8 @@ fi
else
py_cv_module__uuid=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__UUID=$py_cv_module__uuid$as_nl"
if test "x$py_cv_module__uuid" = xyes; then :
@@ -23130,10 +23056,8 @@ $as_echo "$py_cv_module__uuid" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module zlib" >&5
$as_echo_n "checking for stdlib extension module zlib... " >&6; }
- case $py_stdlib_not_available in #(
- *zlib*) :
- py_cv_module_zlib=n/a ;; #(
- *) :
+ if test "$py_cv_module_zlib" != "n/a"; then :
+
if true; then :
if test "$have_zlib" = yes; then :
py_cv_module_zlib=yes
@@ -23143,8 +23067,8 @@ fi
else
py_cv_module_zlib=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE_ZLIB=$py_cv_module_zlib$as_nl"
if test "x$py_cv_module_zlib" = xyes; then :
@@ -23164,13 +23088,9 @@ fi
$as_echo "$py_cv_module_zlib" >&6; }
- case $py_stdlib_not_available in #(
- *binascii*) :
- py_cv_module_binascii=n/a ;; #(
- *) :
- py_cv_module_binascii=yes
- ;;
-esac
+ if test "$py_cv_module_binascii" != "n/a"; then :
+ py_cv_module_binascii=yes
+fi
if test "$py_cv_module_binascii" = yes; then
MODULE_BINASCII_TRUE=
MODULE_BINASCII_FALSE='#'
@@ -23190,10 +23110,8 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _bz2" >&5
$as_echo_n "checking for stdlib extension module _bz2... " >&6; }
- case $py_stdlib_not_available in #(
- *_bz2*) :
- py_cv_module__bz2=n/a ;; #(
- *) :
+ if test "$py_cv_module__bz2" != "n/a"; then :
+
if true; then :
if test "$have_bzip2" = yes; then :
py_cv_module__bz2=yes
@@ -23203,8 +23121,8 @@ fi
else
py_cv_module__bz2=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__BZ2=$py_cv_module__bz2$as_nl"
if test "x$py_cv_module__bz2" = xyes; then :
@@ -23226,10 +23144,8 @@ $as_echo "$py_cv_module__bz2" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _lzma" >&5
$as_echo_n "checking for stdlib extension module _lzma... " >&6; }
- case $py_stdlib_not_available in #(
- *_lzma*) :
- py_cv_module__lzma=n/a ;; #(
- *) :
+ if test "$py_cv_module__lzma" != "n/a"; then :
+
if true; then :
if test "$have_liblzma" = yes; then :
py_cv_module__lzma=yes
@@ -23239,8 +23155,8 @@ fi
else
py_cv_module__lzma=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__LZMA=$py_cv_module__lzma$as_nl"
if test "x$py_cv_module__lzma" = xyes; then :
@@ -23263,10 +23179,8 @@ $as_echo "$py_cv_module__lzma" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _ssl" >&5
$as_echo_n "checking for stdlib extension module _ssl... " >&6; }
- case $py_stdlib_not_available in #(
- *_ssl*) :
- py_cv_module__ssl=n/a ;; #(
- *) :
+ if test "$py_cv_module__ssl" != "n/a"; then :
+
if true; then :
if test "$ac_cv_working_openssl_ssl" = yes; then :
py_cv_module__ssl=yes
@@ -23276,8 +23190,8 @@ fi
else
py_cv_module__ssl=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__SSL=$py_cv_module__ssl$as_nl"
if test "x$py_cv_module__ssl" = xyes; then :
@@ -23299,10 +23213,8 @@ $as_echo "$py_cv_module__ssl" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _hashlib" >&5
$as_echo_n "checking for stdlib extension module _hashlib... " >&6; }
- case $py_stdlib_not_available in #(
- *_hashlib*) :
- py_cv_module__hashlib=n/a ;; #(
- *) :
+ if test "$py_cv_module__hashlib" != "n/a"; then :
+
if true; then :
if test "$ac_cv_working_openssl_hashlib" = yes; then :
py_cv_module__hashlib=yes
@@ -23312,8 +23224,8 @@ fi
else
py_cv_module__hashlib=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__HASHLIB=$py_cv_module__hashlib$as_nl"
if test "x$py_cv_module__hashlib" = xyes; then :
@@ -23336,10 +23248,8 @@ $as_echo "$py_cv_module__hashlib" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _testcapi" >&5
$as_echo_n "checking for stdlib extension module _testcapi... " >&6; }
- case $py_stdlib_not_available in #(
- *_testcapi*) :
- py_cv_module__testcapi=n/a ;; #(
- *) :
+ if test "$py_cv_module__testcapi" != "n/a"; then :
+
if test "$TEST_MODULES" = yes; then :
if true; then :
py_cv_module__testcapi=yes
@@ -23349,8 +23259,8 @@ fi
else
py_cv_module__testcapi=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__TESTCAPI=$py_cv_module__testcapi$as_nl"
if test "x$py_cv_module__testcapi" = xyes; then :
@@ -23372,10 +23282,8 @@ $as_echo "$py_cv_module__testcapi" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _testinternalcapi" >&5
$as_echo_n "checking for stdlib extension module _testinternalcapi... " >&6; }
- case $py_stdlib_not_available in #(
- *_testinternalcapi*) :
- py_cv_module__testinternalcapi=n/a ;; #(
- *) :
+ if test "$py_cv_module__testinternalcapi" != "n/a"; then :
+
if test "$TEST_MODULES" = yes; then :
if true; then :
py_cv_module__testinternalcapi=yes
@@ -23385,8 +23293,8 @@ fi
else
py_cv_module__testinternalcapi=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__TESTINTERNALCAPI=$py_cv_module__testinternalcapi$as_nl"
if test "x$py_cv_module__testinternalcapi" = xyes; then :
@@ -23408,10 +23316,8 @@ $as_echo "$py_cv_module__testinternalcapi" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _testbuffer" >&5
$as_echo_n "checking for stdlib extension module _testbuffer... " >&6; }
- case $py_stdlib_not_available in #(
- *_testbuffer*) :
- py_cv_module__testbuffer=n/a ;; #(
- *) :
+ if test "$py_cv_module__testbuffer" != "n/a"; then :
+
if test "$TEST_MODULES" = yes; then :
if true; then :
py_cv_module__testbuffer=yes
@@ -23421,8 +23327,8 @@ fi
else
py_cv_module__testbuffer=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__TESTBUFFER=$py_cv_module__testbuffer$as_nl"
if test "x$py_cv_module__testbuffer" = xyes; then :
@@ -23444,10 +23350,8 @@ $as_echo "$py_cv_module__testbuffer" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _testimportmultiple" >&5
$as_echo_n "checking for stdlib extension module _testimportmultiple... " >&6; }
- case $py_stdlib_not_available in #(
- *_testimportmultiple*) :
- py_cv_module__testimportmultiple=n/a ;; #(
- *) :
+ if test "$py_cv_module__testimportmultiple" != "n/a"; then :
+
if test "$TEST_MODULES" = yes; then :
if test "$ac_cv_func_dlopen" = yes; then :
py_cv_module__testimportmultiple=yes
@@ -23457,8 +23361,8 @@ fi
else
py_cv_module__testimportmultiple=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__TESTIMPORTMULTIPLE=$py_cv_module__testimportmultiple$as_nl"
if test "x$py_cv_module__testimportmultiple" = xyes; then :
@@ -23480,10 +23384,8 @@ $as_echo "$py_cv_module__testimportmultiple" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _testmultiphase" >&5
$as_echo_n "checking for stdlib extension module _testmultiphase... " >&6; }
- case $py_stdlib_not_available in #(
- *_testmultiphase*) :
- py_cv_module__testmultiphase=n/a ;; #(
- *) :
+ if test "$py_cv_module__testmultiphase" != "n/a"; then :
+
if test "$TEST_MODULES" = yes; then :
if test "$ac_cv_func_dlopen" = yes; then :
py_cv_module__testmultiphase=yes
@@ -23493,8 +23395,8 @@ fi
else
py_cv_module__testmultiphase=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__TESTMULTIPHASE=$py_cv_module__testmultiphase$as_nl"
if test "x$py_cv_module__testmultiphase" = xyes; then :
@@ -23516,10 +23418,8 @@ $as_echo "$py_cv_module__testmultiphase" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _xxtestfuzz" >&5
$as_echo_n "checking for stdlib extension module _xxtestfuzz... " >&6; }
- case $py_stdlib_not_available in #(
- *_xxtestfuzz*) :
- py_cv_module__xxtestfuzz=n/a ;; #(
- *) :
+ if test "$py_cv_module__xxtestfuzz" != "n/a"; then :
+
if test "$TEST_MODULES" = yes; then :
if true; then :
py_cv_module__xxtestfuzz=yes
@@ -23529,8 +23429,8 @@ fi
else
py_cv_module__xxtestfuzz=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__XXTESTFUZZ=$py_cv_module__xxtestfuzz$as_nl"
if test "x$py_cv_module__xxtestfuzz" = xyes; then :
@@ -23552,10 +23452,8 @@ $as_echo "$py_cv_module__xxtestfuzz" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module _ctypes_test" >&5
$as_echo_n "checking for stdlib extension module _ctypes_test... " >&6; }
- case $py_stdlib_not_available in #(
- *_ctypes_test*) :
- py_cv_module__ctypes_test=n/a ;; #(
- *) :
+ if test "$py_cv_module__ctypes_test" != "n/a"; then :
+
if test "$TEST_MODULES" = yes; then :
if true; then :
py_cv_module__ctypes_test=yes
@@ -23565,8 +23463,8 @@ fi
else
py_cv_module__ctypes_test=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE__CTYPES_TEST=$py_cv_module__ctypes_test$as_nl"
if test "x$py_cv_module__ctypes_test" = xyes; then :
@@ -23589,10 +23487,8 @@ $as_echo "$py_cv_module__ctypes_test" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module xxlimited" >&5
$as_echo_n "checking for stdlib extension module xxlimited... " >&6; }
- case $py_stdlib_not_available in #(
- *xxlimited*) :
- py_cv_module_xxlimited=n/a ;; #(
- *) :
+ if test "$py_cv_module_xxlimited" != "n/a"; then :
+
if test "$with_trace_refs" = "no"; then :
if test "$ac_cv_func_dlopen" = yes; then :
py_cv_module_xxlimited=yes
@@ -23602,8 +23498,8 @@ fi
else
py_cv_module_xxlimited=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE_XXLIMITED=$py_cv_module_xxlimited$as_nl"
if test "x$py_cv_module_xxlimited" = xyes; then :
@@ -23625,10 +23521,8 @@ $as_echo "$py_cv_module_xxlimited" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module xxlimited_35" >&5
$as_echo_n "checking for stdlib extension module xxlimited_35... " >&6; }
- case $py_stdlib_not_available in #(
- *xxlimited_35*) :
- py_cv_module_xxlimited_35=n/a ;; #(
- *) :
+ if test "$py_cv_module_xxlimited_35" != "n/a"; then :
+
if test "$with_trace_refs" = "no"; then :
if test "$ac_cv_func_dlopen" = yes; then :
py_cv_module_xxlimited_35=yes
@@ -23638,8 +23532,8 @@ fi
else
py_cv_module_xxlimited_35=disabled
fi
- ;;
-esac
+
+fi
as_fn_append MODULE_BLOCK "MODULE_XXLIMITED_35=$py_cv_module_xxlimited_35$as_nl"
if test "x$py_cv_module_xxlimited_35" = xyes; then :
@@ -23665,7 +23559,7 @@ $as_echo "$py_cv_module_xxlimited_35" >&6; }
# generate output files
ac_config_files="$ac_config_files Makefile.pre Misc/python.pc Misc/python-embed.pc Misc/python-config.sh"
-ac_config_files="$ac_config_files Modules/Setup.stdlib"
+ac_config_files="$ac_config_files Modules/Setup.bootstrap Modules/Setup.stdlib"
ac_config_files="$ac_config_files Modules/ld_so_aix"
@@ -23907,6 +23801,10 @@ if test -z "${MODULE_OSSAUDIODEV_TRUE}" && test -z "${MODULE_OSSAUDIODEV_FALSE}"
as_fn_error $? "conditional \"MODULE_OSSAUDIODEV\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
+if test -z "${MODULE_PWD_TRUE}" && test -z "${MODULE_PWD_FALSE}"; then
+ as_fn_error $? "conditional \"MODULE_PWD\" was never defined.
+Usually this means the macro was only invoked conditionally." "$LINENO" 5
+fi
if test -z "${MODULE_RESOURCE_TRUE}" && test -z "${MODULE_RESOURCE_FALSE}"; then
as_fn_error $? "conditional \"MODULE_RESOURCE\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
@@ -24666,6 +24564,7 @@ do
"Misc/python.pc") CONFIG_FILES="$CONFIG_FILES Misc/python.pc" ;;
"Misc/python-embed.pc") CONFIG_FILES="$CONFIG_FILES Misc/python-embed.pc" ;;
"Misc/python-config.sh") CONFIG_FILES="$CONFIG_FILES Misc/python-config.sh" ;;
+ "Modules/Setup.bootstrap") CONFIG_FILES="$CONFIG_FILES Modules/Setup.bootstrap" ;;
"Modules/Setup.stdlib") CONFIG_FILES="$CONFIG_FILES Modules/Setup.stdlib" ;;
"Modules/ld_so_aix") CONFIG_FILES="$CONFIG_FILES Modules/ld_so_aix" ;;
@@ -25277,7 +25176,7 @@ fi
$as_echo "$as_me: creating Makefile" >&6;}
$SHELL $srcdir/Modules/makesetup -c $srcdir/Modules/config.c.in \
-s Modules \
- Modules/Setup.local $MODULES_SETUP_STDLIB $srcdir/Modules/Setup.bootstrap $srcdir/Modules/Setup
+ Modules/Setup.local $MODULES_SETUP_STDLIB Modules/Setup.bootstrap $srcdir/Modules/Setup
mv config.c Modules
if test -z "$PKG_CONFIG"; then
diff --git a/configure.ac b/configure.ac
index fedec52..3e7d04b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4153,7 +4153,7 @@ AC_CHECK_FUNCS([ \
gai_strerror getegid getentropy geteuid getgid getgrgid getgrgid_r \
getgrnam_r getgrouplist getgroups getitimer getloadavg getlogin \
getpeername getpgid getpid getppid getpriority _getpty \
- getpwent getpwnam_r getpwuid_r getresgid getresuid getrusage getsid getspent \
+ getpwent getpwnam_r getpwuid getpwuid_r getresgid getresuid getrusage getsid getspent \
getspnam getuid getwd if_nameindex initgroups kill killpg lchown linkat \
lockf lstat lutimes madvise mbrtowc memrchr mkdirat mkfifo mkfifoat \
mknod mknodat mktime mmap mremap nice openat opendir pathconf pause pipe \
@@ -6369,62 +6369,72 @@ AS_VAR_IF([TEST_MODULES], [yes],
)
AC_SUBST(TEST_MODULES)
+AC_DEFUN([PY_STDLIB_MOD_SET_NA], [
+ m4_foreach([mod], [$@], [
+ AS_VAR_SET([py_cv_module_]mod, [n/a])])
+])
+
+# stdlib not available
dnl Modules that are not available on some platforms
dnl AIX has shadow passwords, but access is not via getspent()
dnl VxWorks does not provide crypt() function
AS_CASE([$ac_sys_system/$ac_sys_emscripten_target],
- [AIX/*], [py_stdlib_not_available="_scproxy spwd"],
- [VxWorks*/*], [py_stdlib_not_available="_scproxy _crypt termios grp"],
- [Darwin/*], [py_stdlib_not_available="ossaudiodev spwd"],
- [CYGWIN*/*], [py_stdlib_not_available="_scproxy nis"],
- [QNX*/*], [py_stdlib_not_available="_scproxy nis"],
- [FreeBSD*/*], [py_stdlib_not_available="_scproxy spwd"],
+ [AIX/*], [PY_STDLIB_MOD_SET_NA([_scproxy], [spwd])],
+ [VxWorks*/*], [PY_STDLIB_MOD_SET_NA([_scproxy], [_crypt], [termios], [grp])],
+ [Darwin/*], [PY_STDLIB_MOD_SET_NA([ossaudiodev], [spwd])],
+ [CYGWIN*/*], [PY_STDLIB_MOD_SET_NA([_scproxy], [nis])],
+ [QNX*/*], [PY_STDLIB_MOD_SET_NA([_scproxy], [nis])],
+ [FreeBSD*/*], [PY_STDLIB_MOD_SET_NA([_scproxy], [spwd])],
[Emscripten/browser], [
- py_stdlib_not_available="m4_normalize([
- _ctypes
- _curses
- _curses_panel
- _dbm
- _gdbm
- _multiprocessing
- _posixshmem
- _posixsubprocess
- _scproxy
- _tkinter
- _xxsubinterpreters
- fcntl
- grp
- nis
- ossaudiodev
- resource
- readline
- spwd
- syslog
- termios
- ])"
+ PY_STDLIB_MOD_SET_NA(
+ [_ctypes],
+ [_curses],
+ [_curses_panel],
+ [_dbm],
+ [_gdbm],
+ [_multiprocessing],
+ [_posixshmem],
+ [_posixsubprocess],
+ [_scproxy],
+ [_tkinter],
+ [_xxsubinterpreters],
+ [fcntl],
+ [grp],
+ [nis],
+ [ossaudiodev],
+ [pwd],
+ [resource],
+ [readline],
+ [spwd],
+ [syslog],
+ [termios],
+ )
],
dnl Some modules like _posixsubprocess do not work. We build them anyway
dnl so imports in tests do not fail.
[Emscripten/node], [
- py_stdlib_not_available="m4_normalize([
- _ctypes
- _curses
- _curses_panel
- _dbm
- _gdbm
- _scproxy
- _tkinter
- _xxsubinterpreters
- grp
- nis
- ossaudiodev
- spwd
- syslog
- ])"
+ PY_STDLIB_MOD_SET_NA(
+ [_ctypes],
+ [_curses],
+ [_curses_panel],
+ [_dbm],
+ [_gdbm],
+ [_scproxy],
+ [_tkinter],
+ [_xxsubinterpreters],
+ [grp],
+ [nis],
+ [ossaudiodev],
+ [pwd],
+ [spwd],
+ [syslog],
+ )
],
- [py_stdlib_not_available="_scproxy"]
+ [PY_STDLIB_MOD_SET_NA([_scproxy])]
)
+dnl AC_MSG_NOTICE([m4_set_list([_PY_STDLIB_MOD_SET_NA])])
+
dnl Default value for Modules/Setup.stdlib build type
AS_CASE([$host_cpu],
[wasm32|wasm64], [MODULE_BUILDTYPE=static],
@@ -6450,10 +6460,10 @@ MODULE_BLOCK=
dnl Check for stdlib extension modules
dnl PY_STDLIB_MOD([NAME], [ENABLED-TEST], [SUPPORTED-TEST], [CFLAGS], [LDFLAGS])
-dnl sets MODULE_$NAME based on $py_stdlib_not_available, ENABLED-TEST,
+dnl sets MODULE_$NAME based on PY_STDLIB_MOD_SET_NA(), ENABLED-TEST,
dnl and SUPPORTED_TEST. ENABLED-TEST and SUPPORTED-TEST default to true if
dnl empty.
-dnl n/a: $NAME in $py_stdlib_not_available (not available on platform)
+dnl n/a: marked unavailable on platform by PY_STDLIB_MOD_SET_NA()
dnl yes: enabled and supported
dnl missing: enabled and not supported
dnl disabled: not enabled
@@ -6462,12 +6472,12 @@ AC_DEFUN([PY_STDLIB_MOD], [
AC_MSG_CHECKING([for stdlib extension module $1])
m4_pushdef([modcond], [MODULE_]m4_toupper([$1]))dnl
m4_pushdef([modstate], [py_cv_module_$1])dnl
- AS_CASE([$py_stdlib_not_available],
- [*$1*], [modstate=n/a],
- [AS_IF(m4_ifblank([$2], [true], [$2]),
- [AS_IF([m4_ifblank([$3], [true], [$3])], [modstate=yes], [modstate=missing])],
- [modstate=disabled])]
- )
+ dnl Check if module has been disabled by PY_STDLIB_MOD_SET_NA()
+ AS_IF([test "$modstate" != "n/a"], [
+ AS_IF(m4_ifblank([$2], [true], [$2]),
+ [AS_IF([m4_ifblank([$3], [true], [$3])], [modstate=yes], [modstate=missing])],
+ [modstate=disabled])
+ ])
_MODULE_BLOCK_ADD(modcond, [$modstate])
AS_VAR_IF([modstate], [yes], [
m4_ifblank([$4], [], [_MODULE_BLOCK_ADD([MODULE_]m4_toupper([$1])[_CFLAGS], [$4])])
@@ -6480,16 +6490,14 @@ AC_DEFUN([PY_STDLIB_MOD], [
])
dnl Define simple stdlib extension module
-dnl Always enable unless the module is listed in py_stdlib_not_available
+dnl Always enable unless the module is disabled by PY_STDLIB_MOD_SET_NA
dnl PY_STDLIB_MOD_SIMPLE([NAME], [CFLAGS], [LDFLAGS])
dnl cflags and ldflags are optional
AC_DEFUN([PY_STDLIB_MOD_SIMPLE], [
m4_pushdef([modcond], [MODULE_]m4_toupper([$1]))dnl
m4_pushdef([modstate], [py_cv_module_$1])dnl
- AS_CASE([$py_stdlib_not_available],
- [*$1*], [modstate=n/a],
- [modstate=yes]
- )
+ dnl Check if module has been disabled by PY_STDLIB_MOD_SET_NA()
+ AS_IF([test "$modstate" != "n/a"], [modstate=yes])
AM_CONDITIONAL(modcond, [test "$modstate" = yes])
_MODULE_BLOCK_ADD(modcond, [$modstate])
AS_VAR_IF([modstate], [yes], [
@@ -6556,6 +6564,7 @@ dnl platform specific extensions
PY_STDLIB_MOD([grp], [], [test "$ac_cv_func_getgrgid" = yes -o "$ac_cv_func_getgrgid_r" = yes])
PY_STDLIB_MOD([ossaudiodev],
[], [test "$ac_cv_header_linux_soundcard_h" = yes -o "$ac_cv_header_sys_soundcard_h" = yes])
+PY_STDLIB_MOD([pwd], [], [test "$ac_cv_func_getpwuid" = yes -o "$ac_cv_func_getpwuid_r" = yes])
PY_STDLIB_MOD([resource], [], [test "$ac_cv_header_sys_resource_h" = yes])
PY_STDLIB_MOD([_scproxy],
[test "$ac_sys_system" = "Darwin"], [],
@@ -6645,7 +6654,7 @@ AC_SUBST([MODULE_BLOCK])
# generate output files
AC_CONFIG_FILES(Makefile.pre Misc/python.pc Misc/python-embed.pc Misc/python-config.sh)
-AC_CONFIG_FILES([Modules/Setup.stdlib])
+AC_CONFIG_FILES([Modules/Setup.bootstrap Modules/Setup.stdlib])
AC_CONFIG_FILES([Modules/ld_so_aix], [chmod +x Modules/ld_so_aix])
AC_OUTPUT
@@ -6658,7 +6667,7 @@ fi
AC_MSG_NOTICE([creating Makefile])
$SHELL $srcdir/Modules/makesetup -c $srcdir/Modules/config.c.in \
-s Modules \
- Modules/Setup.local $MODULES_SETUP_STDLIB $srcdir/Modules/Setup.bootstrap $srcdir/Modules/Setup
+ Modules/Setup.local $MODULES_SETUP_STDLIB Modules/Setup.bootstrap $srcdir/Modules/Setup
mv config.c Modules
if test -z "$PKG_CONFIG"; then
diff --git a/pyconfig.h.in b/pyconfig.h.in
index a1bf950..40057e0 100644
--- a/pyconfig.h.in
+++ b/pyconfig.h.in
@@ -522,6 +522,9 @@
/* Define to 1 if you have the `getpwnam_r' function. */
#undef HAVE_GETPWNAM_R
+/* Define to 1 if you have the `getpwuid' function. */
+#undef HAVE_GETPWUID
+
/* Define to 1 if you have the `getpwuid_r' function. */
#undef HAVE_GETPWUID_R