Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 1fc8732

Browse files
author
Matthias Koeppe
committed
build/pkgs/python3/{spkg-configure.m4,spkg-build.in}: Ensure ssl module is present
1 parent c349c87 commit 1fc8732

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

build/pkgs/python3/spkg-build.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ fi
107107
echo "Testing importing of various modules..."
108108
import_errors=false
109109
# Trac #31160: We no longer check for readline here.
110-
test_modules="ctypes math hashlib crypt socket zlib sqlite3"
110+
test_modules="ctypes math hashlib crypt socket zlib sqlite3 ssl"
111111
if [ "$UNAME" = "Darwin" ]; then
112112
test_modules="$test_modules _scproxy"
113113
fi

build/pkgs/python3/spkg-configure.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ SAGE_SPKG_CONFIGURE([python3], [
2323
dnl Check if we can do venv with a system python3
2424
dnl instead of building our own copy.
2525
dnl Trac #31160: We no longer check for readline here.
26-
check_modules="sqlite3, ctypes, math, hashlib, crypt, socket, zlib, distutils.core"
26+
check_modules="sqlite3, ctypes, math, hashlib, crypt, socket, zlib, distutils.core, ssl"
2727
AC_CACHE_CHECK([for python3 >= ]MIN_VERSION[, < ]LT_VERSION[ with modules $check_modules], [ac_cv_path_PYTHON3], [
2828
AS_IF([test x"$ac_path_PYTHON3" != x], [dnl checking explicitly specified $with_python
2929
AC_MSG_RESULT([])

0 commit comments

Comments
 (0)