Skip to content

Commit 65c58e6

Browse files
committed
Adjust to Autoconf-2.71
Autoconf-2.71 miconverts: AC_CHECK_FUNCS( \ strcpy \ strdup \ strchr \ strlen \ strcat \ strtok \ ) into: for ac_func in strcpy strdup strchr \ strlen \ strcat \ strtok \ do : [...] done According to Autoconf documentation, the AC_CHECK_FUNCS supports new lines as tokenizers. This patch works around this issue by not escaping the new lines. <https://bugzilla.redhat.com/show_bug.cgi?id=1999491> <https://savannah.gnu.org/support/index.php?110571>
1 parent 6d25634 commit 65c58e6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

configure.ac

+7-7
Original file line numberDiff line numberDiff line change
@@ -171,13 +171,13 @@ AC_TYPE_UID_T
171171
# Checks for library functions.
172172
##
173173
AC_FUNC_MALLOC
174-
AC_CHECK_FUNCS( \
175-
strcpy \
176-
strdup \
177-
strchr \
178-
strlen \
179-
strcat \
180-
strtok \
174+
AC_CHECK_FUNCS(
175+
strcpy
176+
strdup
177+
strchr
178+
strlen
179+
strcat
180+
strtok
181181
)
182182
AC_CHECK_FUNCS([getopt_long])
183183

0 commit comments

Comments
 (0)