[DOC] Bump autoconf requirement #13910
Closed
+1
−1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Autoconf 2.70 or later is required to properly handle multi-line AC_CHECK_FUNCS lists. The recent changes in #13907 that split function lists across multiple lines require autoconf 2.70's improved whitespace handling (ref).
Without autoconf 2.70+, the configure script generation fails with syntax errors like:
../configure: line 29306: syntax error near unexpected token `pthread_attr_get_np'
This is because autoconf 2.69 and earlier don't properly handle multi-line function lists in AC_CHECK_FUNCS without backslash continuations, while 2.70+ requires square brackets and handles newlines correctly.
cc @nobu