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-45723: Prepare support for autoconf 2.71 (GH-29441) #29441
Conversation
If you want to schedule another build, you need to add the " |
All changes are based on the output of 2.71's autoupdate tool. |
autoconf 2.71 has deprecated the macro:
|
Oh, well |
In autoconf 2.71, |
It seems that we can use
|
BTW, we need to make sure we set |
autoconf 2.71 no longer defines the variable |
``AC_PROG_EGREP`` should be checked explicitly. ``AC_CONFIG_HEADER`` -> ``AC_CONFIG_HEADERS`` ``AC_USE_SYSTEM_EXTENSIONS`` must be defined before first use of ``AC_LINK`` or ``AC_COMPILE`` macros. ``STDC_HEADERS`` and ``AC_HEADER_TIME`` are obsolete. Signed-off-by: Christian Heimes <christian@python.org>
Oops :) I have removed the second entry and rebased the PR. |
AC_PROG_EGREP
should be checked explicitly.AC_CONFIG_HEADER
->AC_CONFIG_HEADERS
AC_USE_SYSTEM_EXTENSIONS
must be defined before first use ofAC_LINK
or
AC_COMPILE
macros.STDC_HEADERS
andAC_HEADER_TIME
are obsolete.Signed-off-by: Christian Heimes christian@python.org
https://bugs.python.org/issue45723