Uh oh!
There was an error while loading. Please reload this page.
bpo-45847: Port nis module to PY_STDLIB_MOD (GH-29699) - #29699
Conversation
bedevere-bot
commented
Nov 22, 2021
🤖 New build scheduled with the buildbot fleet by @tiran for commit 3043b762c9cbcb0500de5d9e19cb4139e1457d40 🤖 If you want to schedule another build, you need to add the ":hammer: test-with-buildbots" label again. |
Uh oh!
There was an error while loading. Please reload this page.
bedevere-bot
commented
Nov 22, 2021
🤖 New build scheduled with the buildbot fleet by @tiran for commit c6c687160b4ad830a55235581e6515f36ffe27cd 🤖 If you want to schedule another build, you need to add the ":hammer: test-with-buildbots" label again. |
Signed-off-by: Christian Heimes <christian@python.org>
| @MODULE__RANDOM_TRUE@_random _randommodule.c | ||
| @MODULE__TYPING_TRUE@_typing _typingmodule.c | ||
| @MODULE__XXSUBINTERPRETERS_TRUE@_xxsubinterpreters __xxsubinterpretersmodule.c | ||
| @MODULE__XXSUBINTERPRETERS_TRUE@_xxsubinterpreters _xxsubinterpretersmodule.c |
There was a problem hiding this comment.
@erlend-aasland I'm sneaking in this typo fix, too.
| PY_STDLIB_MOD([_decimal], [], [], [$LIBMPDEC_CFLAGS], [$LIBMPDEC_LDFLAGS]) | ||
| PY_STDLIB_MOD([nis], | ||
| [], [test "$have_nis" = yes -a "$ac_cv_header_rpc_rpc_h" = yes], |
There was a problem hiding this comment.
AFAICS, header check for rpc/rpc.h is missing.
There was a problem hiding this comment.
It's right there:
AS_VAR_IF([have_nis], [yes], [
WITH_SAVE_ENV([
CPPFLAGS="$LIBNSL_CFLAGS $CFLAGS"
AC_CHECK_HEADERS([rpc/rpc.h])
])
])
Signed-off-by: Christian Heimes christian@python.org
https://bugs.python.org/issue45847