Skip to content

Commit c261979

Browse files
committed
Adjust to Autoconf-2.71
Autoconf-2.71 fixed handling traling white spaces (marked with an underscore here): AC_CHECK_FUNCS( \ strcpy \ strdup \ strchr \_ strlen \_ strcat \_ strtok \_ ) and correctly converted them to this shell code: for ac_func in strcpy strdup strchr \ strlen \ strcat \ strtok \ do : [...] done This patch removes the trailing new lines. <https://bugzilla.redhat.com/show_bug.cgi?id=1999491> <https://savannah.gnu.org/support/index.php?110571>
1 parent 6d25634 commit c261979

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

configure.ac

+4-4
Original file line numberDiff line numberDiff line change
@@ -174,10 +174,10 @@ AC_FUNC_MALLOC
174174
AC_CHECK_FUNCS( \
175175
strcpy \
176176
strdup \
177-
strchr \
178-
strlen \
179-
strcat \
180-
strtok \
177+
strchr \
178+
strlen \
179+
strcat \
180+
strtok \
181181
)
182182
AC_CHECK_FUNCS([getopt_long])
183183

0 commit comments

Comments
 (0)