bpo-45847: Port _posixshmem to PY_STDLIB_MOD (GH-29738)

This commit is contained in:
Erlend Egeberg Aasland 2021-11-24 08:19:17 +01:00 committed by GitHub
parent dd8ce9ea8d
commit 324527012f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 98 additions and 70 deletions

View file

@ -122,6 +122,9 @@
@MODULE_SYSLOG_TRUE@syslog syslogmodule.c @MODULE_SYSLOG_TRUE@syslog syslogmodule.c
@MODULE_TERMIOS_TRUE@termios termios.c @MODULE_TERMIOS_TRUE@termios termios.c
# multiprocessing
@MODULE__POSIXSHMEM_TRUE@_posixshmem _multiprocessing/posixshmem.c
############################################################################ ############################################################################
# Modules with third party dependencies # Modules with third party dependencies

105
configure vendored
View file

@ -710,6 +710,8 @@ MODULE_OSSAUDIODEV_FALSE
MODULE_OSSAUDIODEV_TRUE MODULE_OSSAUDIODEV_TRUE
MODULE_GRP_FALSE MODULE_GRP_FALSE
MODULE_GRP_TRUE MODULE_GRP_TRUE
MODULE__POSIXSHMEM_FALSE
MODULE__POSIXSHMEM_TRUE
MODULE_MMAP_FALSE MODULE_MMAP_FALSE
MODULE_MMAP_TRUE MODULE_MMAP_TRUE
MODULE_FCNTL_FALSE MODULE_FCNTL_FALSE
@ -20030,9 +20032,14 @@ fi
# checks for POSIX shared memory, used by Modules/_multiprocessing/posixshmem.c # checks for POSIX shared memory, used by Modules/_multiprocessing/posixshmem.c
# shm_* may only be available if linking against librt # shm_* may only be available if linking against librt
save_LIBS="$LIBS" POSIXSHMEM_CFLAGS='-I$(srcdir)/Modules/_multiprocessing'
save_includes_default="$ac_includes_default" save_CFLAGS=$CFLAGS
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing shm_open" >&5 save_CPPFLAGS=$CPPFLAGS
save_LDFLAGS=$LDFLAGS
save_LIBS=$LIBS
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing shm_open" >&5
$as_echo_n "checking for library containing shm_open... " >&6; } $as_echo_n "checking for library containing shm_open... " >&6; }
if ${ac_cv_search_shm_open+:} false; then : if ${ac_cv_search_shm_open+:} false; then :
$as_echo_n "(cached) " >&6 $as_echo_n "(cached) " >&6
@ -20088,33 +20095,20 @@ if test "$ac_res" != no; then :
fi fi
if test "$ac_cv_search_shm_open" = "-lrt"; then if test "x$ac_cv_search_shm_open" = x-lrt; then :
POSIXSHMEM_LIBS="-lrt"
$as_echo "#define SHM_NEEDS_LIBRT 1" >>confdefs.h
fi
for ac_header in sys/mman.h
do :
ac_fn_c_check_header_mongrel "$LINENO" "sys/mman.h" "ac_cv_header_sys_mman_h" "$ac_includes_default"
if test "x$ac_cv_header_sys_mman_h" = xyes; then :
cat >>confdefs.h <<_ACEOF
#define HAVE_SYS_MMAN_H 1
_ACEOF
fi fi
done save_ac_includes_default=$ac_includes_default
ac_includes_default="\
# temporarily override ac_includes_default for AC_CHECK_FUNCS below ${ac_includes_default}
ac_includes_default="\ #ifndef __cplusplus
${ac_includes_default} # ifdef HAVE_SYS_MMAN_H
#ifndef __cplusplus # include <sys/mman.h>
# ifdef HAVE_SYS_MMAN_H # endif
# include <sys/mman.h> #endif
# endif "
#endif for ac_func in shm_open shm_unlink
"
for ac_func in shm_open shm_unlink
do : do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"
@ -20122,13 +20116,20 @@ if eval test \"x\$"$as_ac_var"\" = x"yes"; then :
cat >>confdefs.h <<_ACEOF cat >>confdefs.h <<_ACEOF
#define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1
_ACEOF _ACEOF
have_posix_shmem=yes
else
have_posix_shmem=no
fi fi
done done
# we don't want to link with librt always, restore LIBS ac_includes_default=$save_ac_includes_default
LIBS="$save_LIBS"
ac_includes_default="$save_includes_default" CFLAGS=$save_CFLAGS
CPPFLAGS=$save_CPPFLAGS
LDFLAGS=$save_LDFLAGS
LIBS=$save_LIBS
# Check for usable OpenSSL # Check for usable OpenSSL
@ -21072,6 +21073,42 @@ fi
$as_echo "$py_cv_module_mmap" >&6; } $as_echo "$py_cv_module_mmap" >&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 true; then :
if test "$have_posix_shmem" = "yes"; then :
py_cv_module__posixshmem=yes
else
py_cv_module__posixshmem=missing
fi
else
py_cv_module__posixshmem=disabled
fi
;;
esac
as_fn_append MODULE_BLOCK "MODULE__POSIXSHMEM=$py_cv_module__posixshmem$as_nl"
if test "x$py_cv_module__posixshmem" = xyes; then :
as_fn_append MODULE_BLOCK "MODULE__POSIXSHMEM_CFLAGS=$POSIXSHMEM_CFLAGS$as_nl"
as_fn_append MODULE_BLOCK "MODULE__POSIXSHMEM_LDFLAGS=$POSIXSHMEM_LIBS$as_nl"
fi
if test "$py_cv_module__posixshmem" = yes; then
MODULE__POSIXSHMEM_TRUE=
MODULE__POSIXSHMEM_FALSE='#'
else
MODULE__POSIXSHMEM_TRUE='#'
MODULE__POSIXSHMEM_FALSE=
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $py_cv_module__posixshmem" >&5
$as_echo "$py_cv_module__posixshmem" >&6; }
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module grp" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for stdlib extension module grp" >&5
$as_echo_n "checking for stdlib extension module grp... " >&6; } $as_echo_n "checking for stdlib extension module grp... " >&6; }
@ -22621,6 +22658,10 @@ if test -z "${MODULE_MMAP_TRUE}" && test -z "${MODULE_MMAP_FALSE}"; then
as_fn_error $? "conditional \"MODULE_MMAP\" was never defined. as_fn_error $? "conditional \"MODULE_MMAP\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5 Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi fi
if test -z "${MODULE__POSIXSHMEM_TRUE}" && test -z "${MODULE__POSIXSHMEM_FALSE}"; then
as_fn_error $? "conditional \"MODULE__POSIXSHMEM\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5
fi
if test -z "${MODULE_GRP_TRUE}" && test -z "${MODULE_GRP_FALSE}"; then if test -z "${MODULE_GRP_TRUE}" && test -z "${MODULE_GRP_FALSE}"; then
as_fn_error $? "conditional \"MODULE_GRP\" was never defined. as_fn_error $? "conditional \"MODULE_GRP\" was never defined.
Usually this means the macro was only invoked conditionally." "$LINENO" 5 Usually this means the macro was only invoked conditionally." "$LINENO" 5

View file

@ -5875,27 +5875,24 @@ AS_VAR_IF([ac_cv_func_getrandom], [yes], [
# checks for POSIX shared memory, used by Modules/_multiprocessing/posixshmem.c # checks for POSIX shared memory, used by Modules/_multiprocessing/posixshmem.c
# shm_* may only be available if linking against librt # shm_* may only be available if linking against librt
save_LIBS="$LIBS" POSIXSHMEM_CFLAGS='-I$(srcdir)/Modules/_multiprocessing'
save_includes_default="$ac_includes_default" WITH_SAVE_ENV([
AC_SEARCH_LIBS(shm_open, rt) AC_SEARCH_LIBS([shm_open], [rt])
if test "$ac_cv_search_shm_open" = "-lrt"; then AS_VAR_IF([ac_cv_search_shm_open], [-lrt], [POSIXSHMEM_LIBS="-lrt"])
AC_DEFINE(SHM_NEEDS_LIBRT, 1,
[Define to 1 if you must link with -lrt for shm_open().]) dnl Temporarily override ac_includes_default for AC_CHECK_FUNCS below.
fi _SAVE_VAR([ac_includes_default])
AC_CHECK_HEADERS(sys/mman.h) ac_includes_default="\
# temporarily override ac_includes_default for AC_CHECK_FUNCS below ${ac_includes_default}
ac_includes_default="\ #ifndef __cplusplus
${ac_includes_default} # ifdef HAVE_SYS_MMAN_H
#ifndef __cplusplus # include <sys/mman.h>
# ifdef HAVE_SYS_MMAN_H # endif
# include <sys/mman.h> #endif
# endif "
#endif AC_CHECK_FUNCS([shm_open shm_unlink], [have_posix_shmem=yes], [have_posix_shmem=no])
" _RESTORE_VAR([ac_includes_default])
AC_CHECK_FUNCS([shm_open shm_unlink]) ])
# we don't want to link with librt always, restore LIBS
LIBS="$save_LIBS"
ac_includes_default="$save_includes_default"
# Check for usable OpenSSL # Check for usable OpenSSL
AX_CHECK_OPENSSL([have_openssl=yes],[have_openssl=no]) AX_CHECK_OPENSSL([have_openssl=yes],[have_openssl=no])
@ -6251,6 +6248,9 @@ PY_STDLIB_MOD([fcntl],
[], [$FCNTL_LIBS]) [], [$FCNTL_LIBS])
PY_STDLIB_MOD([mmap], PY_STDLIB_MOD([mmap],
[], [test "$ac_cv_header_sys_mman_h" = "yes" -a "$ac_cv_header_sys_stat_h" = "yes"]) [], [test "$ac_cv_header_sys_mman_h" = "yes" -a "$ac_cv_header_sys_stat_h" = "yes"])
PY_STDLIB_MOD([_posixshmem],
[], [test "$have_posix_shmem" = "yes"],
[$POSIXSHMEM_CFLAGS], [$POSIXSHMEM_LIBS])
dnl platform specific extensions dnl platform specific extensions
PY_STDLIB_MOD([grp], [], [test "$ac_cv_func_getgrgid" = yes -o "$ac_cv_func_getgrgid_r" = yes]) PY_STDLIB_MOD([grp], [], [test "$ac_cv_func_getgrgid" = yes -o "$ac_cv_func_getgrgid_r" = yes])

View file

@ -1469,9 +1469,6 @@
/* Define if setpgrp() must be called as setpgrp(0, 0). */ /* Define if setpgrp() must be called as setpgrp(0, 0). */
#undef SETPGRP_HAVE_ARG #undef SETPGRP_HAVE_ARG
/* Define to 1 if you must link with -lrt for shm_open(). */
#undef SHM_NEEDS_LIBRT
/* Define if i>>j for signed int i does not extend the sign bit when i < 0 */ /* Define if i>>j for signed int i does not extend the sign bit when i < 0 */
#undef SIGNED_RIGHT_SHIFT_ZERO_FILLS #undef SIGNED_RIGHT_SHIFT_ZERO_FILLS

View file

@ -1397,20 +1397,7 @@ class PyBuildExt(build_ext):
self.add(Extension('_multiprocessing', multiprocessing_srcs, self.add(Extension('_multiprocessing', multiprocessing_srcs,
include_dirs=["Modules/_multiprocessing"])) include_dirs=["Modules/_multiprocessing"]))
if (not MS_WINDOWS and self.addext(Extension('_posixshmem', ['_multiprocessing/posixshmem.c']))
sysconfig.get_config_var('HAVE_SHM_OPEN') and
sysconfig.get_config_var('HAVE_SHM_UNLINK')):
posixshmem_srcs = ['_multiprocessing/posixshmem.c']
libs = []
if sysconfig.get_config_var('SHM_NEEDS_LIBRT'):
# need to link with librt to get shm_open()
libs.append('rt')
self.add(Extension('_posixshmem', posixshmem_srcs,
define_macros={},
libraries=libs,
include_dirs=["Modules/_multiprocessing"]))
else:
self.missing.append('_posixshmem')
def detect_uuid(self): def detect_uuid(self):
# Build the _uuid module if possible # Build the _uuid module if possible