AC_CHECK_HEADERS from git doesn't add newlines

2018-03-03 Thread Ozkan Sezer
AC_CHECK_HEADERS is missing newlines in autoconf-git current. This is starting with: commit 0e2eecedb12dd472c9a008748be6edd6ea68fa0e Author: Paolo Bonzini Date: Mon Oct 31 18:08:07 2016 +0100 autoconf: prefer an unrolled loop for trivial AC_CHECK_HEADERS Here is the issue: (The PA_ADD_HE

Re: AC_CHECK_HEADERS from git doesn't add newlines

2018-03-03 Thread Paul Eggert
Isn't this a bug in th3e nasm configury? There should be a newline in the SEP argument of m4_map_args_w.

Re: AC_CHECK_HEADERS from git doesn't add newlines

2018-03-03 Thread Ozkan Sezer
On 3/3/18, Paul Eggert wrote: > Isn't this a bug in th3e nasm configury? There should be a newline in the > SEP argument of m4_map_args_w. > Doing: AC_DEFUN(PA_ADD_HEADERS, -[m4_map_args_w([$1],[_PA_ADD_HEADER(],[)])]) +[m4_map_args_w([$1],[_PA_ADD_HEADER(],[) +])]) .. cures the issue, yes. I