-
-
Notifications
You must be signed in to change notification settings - Fork 30.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-45847: Port nis module to PY_STDLIB_MOD (GH-29699) #29699
Conversation
🤖 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. |
🤖 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 <[email protected]>
@@ -40,7 +40,7 @@ | |||
@MODULE__QUEUE_TRUE@_queue _queuemodule.c | |||
@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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@erlend-aasland I'm sneaking in this typo fix, too.
@@ -6166,6 +6188,9 @@ PY_STDLIB_MOD([_sha3], [test "$with_builtin_sha3" = yes]) | |||
PY_STDLIB_MOD([_blake2], [test "$with_builtin_blake2" = yes]) | |||
|
|||
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AFAICS, header check for rpc/rpc.h
is missing.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's right there:
AS_VAR_IF([have_nis], [yes], [
WITH_SAVE_ENV([
CPPFLAGS="$LIBNSL_CFLAGS $CFLAGS"
AC_CHECK_HEADERS([rpc/rpc.h])
])
])
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤦🏻
Signed-off-by: Christian Heimes [email protected]
https://bugs.python.org/issue45847