diff options
author | Victor Stinner <vstinner@python.org> | 2023-05-24 20:34:41 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-24 20:34:41 (GMT) |
commit | 684e99d01df0c7c8f7c67567e2cece4673df9432 (patch) | |
tree | ce4e099967cd12b76e38518fe36942783a57ebe0 /configure | |
parent | 160321e5304b962a162eb023472aa2bc8307ae15 (diff) | |
download | cpython-684e99d01df0c7c8f7c67567e2cece4673df9432.zip cpython-684e99d01df0c7c8f7c67567e2cece4673df9432.tar.gz cpython-684e99d01df0c7c8f7c67567e2cece4673df9432.tar.bz2 |
gh-104773: PEP 594: Remove the spwd module (#104871)
Remove spwd from the configure script and Modules/Setup.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 48 |
1 files changed, 0 insertions, 48 deletions
@@ -716,8 +716,6 @@ MODULE_TERMIOS_FALSE MODULE_TERMIOS_TRUE MODULE_SYSLOG_FALSE MODULE_SYSLOG_TRUE -MODULE_SPWD_FALSE -MODULE_SPWD_TRUE MODULE__SCPROXY_FALSE MODULE__SCPROXY_TRUE MODULE_RESOURCE_FALSE @@ -25651,7 +25649,6 @@ case $ac_sys_system in #( py_cv_module__scproxy=n/a - py_cv_module_spwd=n/a ;; #( VxWorks*) : @@ -25661,11 +25658,6 @@ case $ac_sys_system in #( py_cv_module_termios=n/a py_cv_module_grp=n/a ;; #( - Darwin) : - - - py_cv_module_spwd=n/a - ;; #( CYGWIN*) : @@ -25682,7 +25674,6 @@ case $ac_sys_system in #( py_cv_module__scproxy=n/a - py_cv_module_spwd=n/a ;; #( Emscripten|WASI) : @@ -25703,7 +25694,6 @@ case $ac_sys_system in #( py_cv_module_nis=n/a py_cv_module_pwd=n/a py_cv_module_resource=n/a - py_cv_module_spwd=n/a py_cv_module_syslog=n/a py_cv_module_=n/a @@ -26594,40 +26584,6 @@ fi $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; } - 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 -else - py_cv_module_spwd=missing -fi -else - py_cv_module_spwd=disabled -fi - -fi - as_fn_append MODULE_BLOCK "MODULE_SPWD_STATE=$py_cv_module_spwd$as_nl" - if test "x$py_cv_module_spwd" = xyes; then : - - - - -fi - if test "$py_cv_module_spwd" = yes; then - MODULE_SPWD_TRUE= - MODULE_SPWD_FALSE='#' -else - MODULE_SPWD_TRUE='#' - MODULE_SPWD_FALSE= -fi - - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $py_cv_module_spwd" >&5 -$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; } if test "$py_cv_module_syslog" != "n/a"; then : @@ -28335,10 +28291,6 @@ if test -z "${MODULE__SCPROXY_TRUE}" && test -z "${MODULE__SCPROXY_FALSE}"; then as_fn_error $? "conditional \"MODULE__SCPROXY\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi -if test -z "${MODULE_SPWD_TRUE}" && test -z "${MODULE_SPWD_FALSE}"; then - as_fn_error $? "conditional \"MODULE_SPWD\" was never defined. -Usually this means the macro was only invoked conditionally." "$LINENO" 5 -fi if test -z "${MODULE_SYSLOG_TRUE}" && test -z "${MODULE_SYSLOG_FALSE}"; then as_fn_error $? "conditional \"MODULE_SYSLOG\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 |