tech-toolchain archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

further texinfo lossage with GCC 15.1



Vasyl Maksym Lanko reports more fallout from his Manjaro Linux system using
GCC 15.1 as the system compiler.

/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:56:11: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   56 |   { "\t", insert_space, NO_BRACE_ARGS },
      |           ^~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:56:11: note: (near initialization for 'command_table[0].proc')
In file included from /home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:24:
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:62:3: note: 'insert_space' declared here
   62 |   insert_space (int arg),
      |   ^~~~~~~~~~~~


/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:59:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   59 |   { "!", cm_punct, NO_BRACE_ARGS },
      |          ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:59:10: note: (near initialization for 'command_table[3].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:108:3: note: 'cm_punct' declared here
  108 |   cm_punct (int arg),
      |   ^~~~~~~~


/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:70:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   70 |   { "@", insert_self, NO_BRACE_ARGS },
      |          ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:70:10: note: (near initialization for 'command_table[14].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:61:13: note: 'insert_self' declared here
   61 | extern void insert_self (int arg),
      |             ^~~~~~~~~~~


/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/makeinfo.c: In function 'read_command':
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/makeinfo.c:2031:23: error: passing argument 1 of 'remember_brace' from incompatible pointer type [-Wincompatible-pointer-types]
 2031 |       remember_brace (enclosure_expand);
      |                       ^~~~~~~~~~~~~~~~
      |                       |
      |                       void (*)(int,  int,  int)
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/makeinfo.c:168:48: note: expected 'void (*)(void)' but argument is of type 'void (*)(int,  int, int)'
  168 | static void remember_brace (COMMAND_FUNCTION (*proc));
      |                             ~~~~~~~~~~~~~~~~~~~^~~~~

etc.

makeinfo/cmds.h has the follwing declaration:
/* The three arguments a command can get are a flag saying whether it is
  before argument parsing (START) or after (END), the starting position
  of the arguments, and the ending position.  */
typedef void COMMAND_FUNCTION ();

makeinfo/cmds.c has:

COMMAND command_table[] = {
  { "\t", insert_space, NO_BRACE_ARGS },
  { "\n", insert_space, NO_BRACE_ARGS },
  { " ", insert_space, NO_BRACE_ARGS },
  { "!", cm_punct, NO_BRACE_ARGS },
  { "\"", cm_accent_umlaut, MAYBE_BRACE_ARGS },
  ...

What is the best way to deal with this lossage?  I figure we're not
updating texinfo anytime soon because the latest version requires Perl.

3 options from the top of my head:

1. we disable the appropriate GCC warning in tools/texinfo/Makfile for all of
   texinfo
2. we disable the appropriate GCC warning for cmds.c and makeinfo.c only.
   Not sure where best to do that.
3. we hack cmds.[hc] and makeinfo.c so that the problem goes away.  I guess
   this mean to change all command functions to take 3 args and mark some of
   them __unused.  This is the most work, obviously.

For 1. and 2. do we need to introduce a correspong CC_WNO_... in bsd.own.mk?

--chris
/home/maksym/netbsd-gsoc/obj/tools/bin/nbmake  -f /home/maksym/netbsd-gsoc/src/tools/texinfo/../Makefile.gnuwrap  all-recursive
Making all in intl
Making all in m4
Making all in lib
Making all in makeinfo
Making all in tests
if cc -DHAVE_CONFIG_H -I. -I/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo -I.. -I/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/lib -I../intl -DLOCALEDIR=\"/home/maksym/netbsd-gsoc/obj/tools/share/locale\"   -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64  -O -MT cmds.o -MD -MP -MF ".deps/cmds.Tpo" -c -o cmds.o /home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c;  then mv -f ".deps/cmds.Tpo" ".deps/cmds.Po"; else rm -f ".deps/cmds.Tpo"; exit 1; fi
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:56:11: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   56 |   { "\t", insert_space, NO_BRACE_ARGS },
      |           ^~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:56:11: note: (near initialization for 'command_table[0].proc')
In file included from /home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:24:
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:62:3: note: 'insert_space' declared here
   62 |   insert_space (int arg),
      |   ^~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:57:11: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   57 |   { "\n", insert_space, NO_BRACE_ARGS },
      |           ^~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:57:11: note: (near initialization for 'command_table[1].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:62:3: note: 'insert_space' declared here
   62 |   insert_space (int arg),
      |   ^~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:58:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   58 |   { " ", insert_space, NO_BRACE_ARGS },
      |          ^~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:58:10: note: (near initialization for 'command_table[2].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:62:3: note: 'insert_space' declared here
   62 |   insert_space (int arg),
      |   ^~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:59:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   59 |   { "!", cm_punct, NO_BRACE_ARGS },
      |          ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:59:10: note: (near initialization for 'command_table[3].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:108:3: note: 'cm_punct' declared here
  108 |   cm_punct (int arg),
      |   ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:60:11: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
   60 |   { "\"", cm_accent_umlaut, MAYBE_BRACE_ARGS },
      |           ^~~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:60:11: note: (near initialization for 'command_table[4].proc')
In file included from /home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:30:
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:141:13: note: 'cm_accent_umlaut' declared here
  141 | extern void cm_accent_umlaut (int arg, int start, int end),
      |             ^~~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:61:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
   61 |   { "'", cm_accent_acute, MAYBE_BRACE_ARGS },
      |          ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:61:10: note: (near initialization for 'command_table[5].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:142:6: note: 'cm_accent_acute' declared here
  142 |      cm_accent_acute (int arg, int start, int end),
      |      ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:63:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
   63 |   { ",", cm_accent_cedilla, MAYBE_BRACE_ARGS },
      |          ^~~~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:63:10: note: (near initialization for 'command_table[7].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:143:6: note: 'cm_accent_cedilla' declared here
  143 |      cm_accent_cedilla (int arg, int start, int end),
      |      ^~~~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:65:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   65 |   { ".", cm_punct, NO_BRACE_ARGS },
      |          ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:65:10: note: (near initialization for 'command_table[9].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:108:3: note: 'cm_punct' declared here
  108 |   cm_punct (int arg),
      |   ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:68:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   68 |   { "=", cm_accent, MAYBE_BRACE_ARGS },
      |          ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:68:10: note: (near initialization for 'command_table[12].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:6: note: 'cm_accent' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |      ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:69:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   69 |   { "?", cm_punct, NO_BRACE_ARGS },
      |          ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:69:10: note: (near initialization for 'command_table[13].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:108:3: note: 'cm_punct' declared here
  108 |   cm_punct (int arg),
      |   ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:70:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   70 |   { "@", insert_self, NO_BRACE_ARGS },
      |          ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:70:10: note: (near initialization for 'command_table[14].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:61:13: note: 'insert_self' declared here
   61 | extern void insert_self (int arg),
      |             ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:71:11: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   71 |   { "\\", insert_self, NO_BRACE_ARGS },
      |           ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:71:11: note: (near initialization for 'command_table[15].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:61:13: note: 'insert_self' declared here
   61 | extern void insert_self (int arg),
      |             ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:72:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
   72 |   { "^", cm_accent_hat, MAYBE_BRACE_ARGS },
      |          ^~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:72:10: note: (near initialization for 'command_table[16].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:144:6: note: 'cm_accent_hat' declared here
  144 |      cm_accent_hat (int arg, int start, int end),
      |      ^~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:73:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
   73 |   { "`", cm_accent_grave, MAYBE_BRACE_ARGS },
      |          ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:73:10: note: (near initialization for 'command_table[17].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:145:6: note: 'cm_accent_grave' declared here
  145 |      cm_accent_grave (int arg, int start, int end),
      |      ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:74:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   74 |   { "{", insert_self, NO_BRACE_ARGS },
      |          ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:74:10: note: (near initialization for 'command_table[18].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:61:13: note: 'insert_self' declared here
   61 | extern void insert_self (int arg),
      |             ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:76:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   76 |   { "}", insert_self, NO_BRACE_ARGS },
      |          ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:76:10: note: (near initialization for 'command_table[20].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:61:13: note: 'insert_self' declared here
   61 | extern void insert_self (int arg),
      |             ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:77:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
   77 |   { "~", cm_accent_tilde, MAYBE_BRACE_ARGS },
      |          ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:77:10: note: (near initialization for 'command_table[21].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:146:6: note: 'cm_accent_tilde' declared here
  146 |      cm_accent_tilde (int arg, int start, int end);
      |      ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:78:11: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   78 |   { "AA", cm_special_char, BRACE_ARGS },
      |           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:78:11: note: (near initialization for 'command_table[22].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:27: note: 'cm_special_char' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |                           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:79:11: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   79 |   { "AE", cm_special_char, BRACE_ARGS },
      |           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:79:11: note: (near initialization for 'command_table[23].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:27: note: 'cm_special_char' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |                           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:80:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   80 |   { "H", cm_accent, MAYBE_BRACE_ARGS },
      |          ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:80:10: note: (near initialization for 'command_table[24].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:6: note: 'cm_accent' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |      ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:81:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   81 |   { "L", cm_special_char, BRACE_ARGS },
      |          ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:81:10: note: (near initialization for 'command_table[25].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:27: note: 'cm_special_char' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |                           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:82:14: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   82 |   { "LaTeX", cm_LaTeX, BRACE_ARGS },
      |              ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:82:14: note: (near initialization for 'command_table[26].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:92:13: note: 'cm_LaTeX' declared here
   92 | extern void cm_LaTeX (int arg),
      |             ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:83:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   83 |   { "O", cm_special_char, BRACE_ARGS },
      |          ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:83:10: note: (near initialization for 'command_table[27].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:27: note: 'cm_special_char' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |                           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:84:11: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   84 |   { "OE", cm_special_char, BRACE_ARGS },
      |           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:84:11: note: (near initialization for 'command_table[28].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:27: note: 'cm_special_char' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |                           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:85:12: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   85 |   { "TeX", cm_TeX, BRACE_ARGS },
      |            ^~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:85:12: note: (near initialization for 'command_table[29].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:93:3: note: 'cm_TeX' declared here
   93 |   cm_TeX (int arg),
      |   ^~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:86:11: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   86 |   { "aa", cm_special_char, BRACE_ARGS },
      |           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:86:11: note: (near initialization for 'command_table[30].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:27: note: 'cm_special_char' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |                           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:87:13: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   87 |   { "abbr", cm_abbr, BRACE_ARGS },
      |             ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:87:13: note: (near initialization for 'command_table[31].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:114:3: note: 'cm_abbr' declared here
  114 |   cm_abbr (int arg),
      |   ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:88:16: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   88 |   { "acronym", cm_acronym, BRACE_ARGS },
      |                ^~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:88:16: note: (near initialization for 'command_table[32].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:113:13: note: 'cm_acronym' declared here
  113 | extern void cm_acronym (int arg),
      |             ^~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:89:11: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   89 |   { "ae", cm_special_char, BRACE_ARGS },
      |           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:89:11: note: (near initialization for 'command_table[33].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:27: note: 'cm_special_char' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |                           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:95:15: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
   95 |   { "anchor", cm_anchor, BRACE_ARGS },
      |               ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:95:15: note: (near initialization for 'command_table[39].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:84:13: note: 'cm_anchor' declared here
   84 | extern void cm_anchor (int arg),
      |             ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:103:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  103 |   { "b", cm_b, BRACE_ARGS },
      |          ^~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:103:10: note: (near initialization for 'command_table[47].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:115:3: note: 'cm_b' declared here
  115 |   cm_b (int arg),
      |   ^~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:104:15: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  104 |   { "bullet", cm_bullet, BRACE_ARGS },
      |               ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:104:15: note: (near initialization for 'command_table[48].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:94:3: note: 'cm_bullet' declared here
   94 |   cm_bullet (int arg),
      |   ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:107:16: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  107 |   { "caption", cm_caption, BRACE_ARGS },
      |                ^~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:107:16: note: (near initialization for 'command_table[51].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:191:3: note: 'cm_caption' declared here
  191 |   cm_caption (int arg),
      |   ^~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:114:13: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int)' [-Wincompatible-pointer-types]
  114 |   { "cite", cm_cite, BRACE_ARGS },
      |             ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:114:13: note: (near initialization for 'command_table[58].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:116:3: note: 'cm_cite' declared here
  116 |   cm_cite (int arg, int position),
      |   ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:116:13: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  116 |   { "code", cm_code, BRACE_ARGS },
      |             ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:116:13: note: (near initialization for 'command_table[60].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:117:3: note: 'cm_code' declared here
  117 |   cm_code (int arg),
      |   ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:117:14: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  117 |   { "comma", cm_comma, BRACE_ARGS },
      |              ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:117:14: note: (near initialization for 'command_table[61].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:96:3: note: 'cm_comma' declared here
   96 |   cm_comma (int arg),
      |   ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:118:16: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  118 |   { "command", cm_code, BRACE_ARGS },
      |                ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:118:16: note: (near initialization for 'command_table[62].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:117:3: note: 'cm_code' declared here
  117 |   cm_code (int arg),
      |   ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:120:17: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  120 |   { "contents", cm_contents, NO_BRACE_ARGS },
      |                 ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:120:17: note: (near initialization for 'command_table[64].proc')
In file included from /home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:35:
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/toc.h:45:13: note: 'cm_contents' declared here
   45 | extern void cm_contents (int arg);
      |             ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:122:18: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  122 |   { "copyright", cm_copyright, BRACE_ARGS },
      |                  ^~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:122:18: note: (near initialization for 'command_table[66].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:97:3: note: 'cm_copyright' declared here
   97 |   cm_copyright (int arg),
      |   ^~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:123:13: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  123 |   { "ctrl", cm_obsolete, BRACE_ARGS },
      |             ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:123:13: note: (near initialization for 'command_table[67].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:51:13: note: 'cm_obsolete' declared here
   51 | static void cm_obsolete (int arg, int start, int end),
      |             ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:168:12: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int)' [-Wincompatible-pointer-types]
  168 |   { "dfn", cm_dfn, BRACE_ARGS },
      |            ^~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:168:12: note: (near initialization for 'command_table[112].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:118:3: note: 'cm_dfn' declared here
  118 |   cm_dfn (int arg, int position),
      |   ^~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:172:12: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  172 |   { "dmn", cm_dmn, BRACE_ARGS },
      |            ^~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:172:12: note: (near initialization for 'command_table[116].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:119:3: note: 'cm_dmn' declared here
  119 |   cm_dmn (int arg),
      |   ^~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:173:16: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  173 |   { "docbook", cm_docbook, NO_BRACE_ARGS },
      |                ^~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:173:16: note: (near initialization for 'command_table[117].proc')
In file included from /home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/defun.h:27,
                 from /home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:25:
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/insertion.h:65:57: note: 'cm_docbook' declared here
   65 | extern void cm_ifdocbook (void), cm_ifnotdocbook(void), cm_docbook (int arg);
      |                                                         ^~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:177:18: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  177 |   { "dotaccent", cm_accent, MAYBE_BRACE_ARGS },
      |                  ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:177:18: note: (near initialization for 'command_table[121].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:6: note: 'cm_accent' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |      ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:178:16: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  178 |   { "dotless", cm_dotless, BRACE_ARGS },
      |                ^~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:178:16: note: (near initialization for 'command_table[122].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:139:6: note: 'cm_dotless' declared here
  139 |      cm_dotless (int arg, int start, int end);
      |      ^~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:179:13: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  179 |   { "dots", cm_dots, BRACE_ARGS },
      |             ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:179:13: note: (near initialization for 'command_table[123].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:98:3: note: 'cm_dots' declared here
   98 |   cm_dots (int arg),
      |   ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:180:14: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  180 |   { "email", cm_email, BRACE_ARGS },
      |              ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:180:14: note: (near initialization for 'command_table[124].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:120:3: note: 'cm_email' declared here
  120 |   cm_email (int arg),
      |   ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:181:13: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  181 |   { "emph", cm_emph, BRACE_ARGS },
      |             ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:181:13: note: (near initialization for 'command_table[125].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:121:3: note: 'cm_emph' declared here
  121 |   cm_emph (int arg),
      |   ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:183:16: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  183 |   { "enddots", cm_enddots, BRACE_ARGS },
      |                ^~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:183:16: note: (near initialization for 'command_table[127].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:99:3: note: 'cm_enddots' declared here
   99 |   cm_enddots (int arg),
      |   ^~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:185:12: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  185 |   { "env", cm_code, BRACE_ARGS },
      |            ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:185:12: note: (near initialization for 'command_table[129].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:117:3: note: 'cm_code' declared here
  117 |   cm_code (int arg),
      |   ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:186:14: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  186 |   { "equiv", cm_equiv, BRACE_ARGS },
      |              ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:186:14: note: (near initialization for 'command_table[130].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:100:3: note: 'cm_equiv' declared here
  100 |   cm_equiv (int arg),
      |   ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:187:14: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  187 |   { "error", cm_error, BRACE_ARGS },
      |              ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:187:14: note: (near initialization for 'command_table[131].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:101:3: note: 'cm_error' declared here
  101 |   cm_error (int arg),
      |   ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:188:13: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  188 |   { "euro", cm_special_char, BRACE_ARGS },
      |             ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:188:13: note: (near initialization for 'command_table[132].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:27: note: 'cm_special_char' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |                           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:195:19: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  195 |   { "exclamdown", cm_special_char, BRACE_ARGS },
      |                   ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:195:19: note: (near initialization for 'command_table[139].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:27: note: 'cm_special_char' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |                           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:197:18: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  197 |   { "expansion", cm_expansion, BRACE_ARGS },
      |                  ^~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:197:18: note: (near initialization for 'command_table[141].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:102:3: note: 'cm_expansion' declared here
  102 |   cm_expansion (int arg),
      |   ^~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:198:13: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  198 |   { "file", cm_code, BRACE_ARGS },
      |             ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:198:13: note: (near initialization for 'command_table[142].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:117:3: note: 'cm_code' declared here
  117 |   cm_code (int arg),
      |   ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:213:13: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  213 |   { "html", cm_html, NO_BRACE_ARGS },
      |             ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:213:13: note: (near initialization for 'command_table[157].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/insertion.h:66:51: note: 'cm_html' declared here
   66 | extern void cm_ifhtml (void), cm_ifnothtml(void), cm_html (int arg);
      |                                                   ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:214:20: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  214 |   { "hyphenation", cm_ignore_arg, BRACE_ARGS },
      |                    ^~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:214:20: note: (near initialization for 'command_table[158].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:64:3: note: 'cm_ignore_arg' declared here
   64 |   cm_ignore_arg (int arg, int start_pos, int end_pos),
      |   ^~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:215:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  215 |   { "i", cm_i, BRACE_ARGS },
      |          ^~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:215:10: note: (near initialization for 'command_table[159].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:122:3: note: 'cm_i' declared here
  122 |   cm_i (int arg),
      |   ^~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:232:14: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  232 |   { "image", cm_image, BRACE_ARGS },
      |              ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:232:14: note: (near initialization for 'command_table[176].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:103:3: note: 'cm_image' declared here
  103 |   cm_image (int arg),
      |   ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:235:20: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  235 |   { "indicateurl", cm_indicate_url, BRACE_ARGS },
      |                    ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:235:20: note: (near initialization for 'command_table[179].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:133:3: note: 'cm_indicate_url' declared here
  133 |   cm_indicate_url (int arg, int start, int end),
      |   ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:236:16: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  236 |   { "inforef", cm_inforef, BRACE_ARGS },
      |                ^~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:236:16: note: (near initialization for 'command_table[180].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:88:3: note: 'cm_inforef' declared here
   88 |   cm_inforef (int arg),
      |   ^~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:241:12: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  241 |   { "kbd", cm_kbd, BRACE_ARGS },
      |            ^~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:241:12: note: (near initialization for 'command_table[185].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:123:3: note: 'cm_kbd' declared here
  123 |   cm_kbd (int arg),
      |   ^~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:243:12: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  243 |   { "key", cm_key, BRACE_ARGS },
      |            ^~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:243:12: note: (near initialization for 'command_table[187].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:124:3: note: 'cm_key' declared here
  124 |   cm_key (int arg),
      |   ^~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:245:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  245 |   { "l", cm_special_char, BRACE_ARGS },
      |          ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:245:10: note: (near initialization for 'command_table[189].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:27: note: 'cm_special_char' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |                           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:251:13: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  251 |   { "math", cm_math, BRACE_ARGS },
      |             ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:251:13: note: (near initialization for 'command_table[195].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:125:3: note: 'cm_math' declared here
  125 |   cm_math (int arg),
      |   ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:253:14: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  253 |   { "minus", cm_minus, BRACE_ARGS },
      |              ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:253:14: note: (near initialization for 'command_table[197].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:105:3: note: 'cm_minus' declared here
  105 |   cm_minus (int arg),
      |   ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:260:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  260 |   { "o", cm_special_char, BRACE_ARGS },
      |          ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:260:10: note: (near initialization for 'command_table[204].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:27: note: 'cm_special_char' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |                           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:263:11: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  263 |   { "oe", cm_special_char, BRACE_ARGS },
      |           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:263:11: note: (near initialization for 'command_table[207].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:27: note: 'cm_special_char' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |                           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:264:15: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  264 |   { "option", cm_code, BRACE_ARGS },
      |               ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:264:15: note: (near initialization for 'command_table[208].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:117:3: note: 'cm_code' declared here
  117 |   cm_code (int arg),
      |   ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:265:13: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  265 |   { "ordf", cm_special_char, BRACE_ARGS },
      |             ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:265:13: note: (near initialization for 'command_table[209].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:27: note: 'cm_special_char' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |                           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:266:13: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  266 |   { "ordm", cm_special_char, BRACE_ARGS },
      |             ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:266:13: note: (near initialization for 'command_table[210].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:27: note: 'cm_special_char' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |                           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:271:14: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  271 |   { "point", cm_point, BRACE_ARGS },
      |              ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:271:14: note: (near initialization for 'command_table[215].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:106:3: note: 'cm_point' declared here
  106 |   cm_point (int arg),
      |   ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:272:15: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  272 |   { "pounds", cm_special_char, BRACE_ARGS },
      |               ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:272:15: note: (near initialization for 'command_table[216].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:27: note: 'cm_special_char' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |                           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:273:14: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  273 |   { "print", cm_print, BRACE_ARGS },
      |              ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:273:14: note: (near initialization for 'command_table[217].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:107:3: note: 'cm_print' declared here
  107 |   cm_print (int arg),
      |   ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:275:14: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  275 |   { "pxref", cm_pxref, BRACE_ARGS },
      |              ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:275:14: note: (near initialization for 'command_table[219].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:86:3: note: 'cm_pxref' declared here
   86 |   cm_pxref (int arg),
      |   ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:276:21: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  276 |   { "questiondown", cm_special_char, BRACE_ARGS },
      |                     ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:276:21: note: (near initialization for 'command_table[220].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:27: note: 'cm_special_char' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |                           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:278:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  278 |   { "r", cm_r, BRACE_ARGS },
      |          ^~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:278:10: note: (near initialization for 'command_table[222].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:127:3: note: 'cm_r' declared here
  127 |   cm_r (int arg),
      |   ^~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:280:12: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  280 |   { "ref", cm_ref, BRACE_ARGS },
      |            ^~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:280:12: note: (near initialization for 'command_table[224].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:87:3: note: 'cm_ref' declared here
   87 |   cm_ref (int arg),
      |   ^~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:282:25: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  282 |   { "registeredsymbol", cm_registeredsymbol, BRACE_ARGS },
      |                         ^~~~~~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:282:25: note: (near initialization for 'command_table[226].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:109:3: note: 'cm_registeredsymbol' declared here
  109 |   cm_registeredsymbol (int arg),
      |   ^~~~~~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:283:15: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  283 |   { "result", cm_result, BRACE_ARGS },
      |               ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:283:15: note: (near initialization for 'command_table[227].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:110:3: note: 'cm_result' declared here
  110 |   cm_result (int arg);
      |   ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:284:19: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  284 |   { "ringaccent", cm_accent, MAYBE_BRACE_ARGS },
      |                   ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:284:19: note: (near initialization for 'command_table[228].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:6: note: 'cm_accent' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |      ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:286:13: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  286 |   { "samp", cm_code, BRACE_ARGS },
      |             ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:286:13: note: (near initialization for 'command_table[230].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:117:3: note: 'cm_code' declared here
  117 |   cm_code (int arg),
      |   ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:287:18: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  287 |   { "sansserif", cm_sansserif, BRACE_ARGS },
      |                  ^~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:287:18: note: (near initialization for 'command_table[231].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:128:3: note: 'cm_sansserif' declared here
  128 |   cm_sansserif (int arg),
      |   ^~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:288:11: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  288 |   { "sc", cm_sc, BRACE_ARGS },
      |           ^~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:288:11: note: (near initialization for 'command_table[232].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:129:3: note: 'cm_sc' declared here
  129 |   cm_sc (int arg, int start_pos, int end_pos),
      |   ^~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:292:24: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  292 |   { "setchapterstyle", cm_obsolete, NO_BRACE_ARGS },
      |                        ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:292:24: note: (near initialization for 'command_table[236].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:51:13: note: 'cm_obsolete' declared here
   51 | static void cm_obsolete (int arg, int start, int end),
      |             ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:297:21: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  297 |   { "shortcaption", cm_caption, BRACE_ARGS },
      |                     ^~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:297:21: note: (near initialization for 'command_table[241].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:191:3: note: 'cm_caption' declared here
  191 |   cm_caption (int arg),
      |   ^~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:298:22: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  298 |   { "shortcontents", cm_contents, NO_BRACE_ARGS },
      |                      ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:298:22: note: (near initialization for 'command_table[242].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/toc.h:45:13: note: 'cm_contents' declared here
   45 | extern void cm_contents (int arg);
      |             ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:300:16: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  300 |   { "slanted", cm_slanted, BRACE_ARGS },
      |                ^~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:300:16: note: (near initialization for 'command_table[244].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:130:3: note: 'cm_slanted' declared here
  130 |   cm_slanted (int arg),
      |   ^~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:307:11: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  307 |   { "ss", cm_special_char, BRACE_ARGS },
      |           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:307:11: note: (near initialization for 'command_table[251].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:27: note: 'cm_special_char' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |                           ^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:308:15: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  308 |   { "strong", cm_strong, BRACE_ARGS },
      |               ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:308:15: note: (near initialization for 'command_table[252].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:131:3: note: 'cm_strong' declared here
  131 |   cm_strong (int arg, int start_pos, int end_pos),
      |   ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:314:24: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  314 |   { "summarycontents", cm_contents, NO_BRACE_ARGS },
      |                        ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:314:24: note: (near initialization for 'command_table[258].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/toc.h:45:13: note: 'cm_contents' declared here
   45 | extern void cm_contents (int arg);
      |             ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:317:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  317 |   { "t", cm_tt, BRACE_ARGS },
      |          ^~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:317:10: note: (near initialization for 'command_table[261].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:132:3: note: 'cm_tt' declared here
  132 |   cm_tt (int arg),
      |   ^~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:321:12: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  321 |   { "tie", cm_tie, BRACE_ARGS },
      |            ^~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:321:12: note: (near initialization for 'command_table[265].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:179:13: note: 'cm_tie' declared here
  179 | extern void cm_tie (int arg),
      |             ^~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:322:18: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  322 |   { "tieaccent", cm_accent, MAYBE_BRACE_ARGS },
      |                  ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:322:18: note: (near initialization for 'command_table[266].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:6: note: 'cm_accent' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |      ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:325:18: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  325 |   { "titlefont", cm_titlefont, BRACE_ARGS },
      |                  ^~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:325:18: note: (near initialization for 'command_table[269].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:186:3: note: 'cm_titlefont' declared here
  186 |   cm_titlefont (int arg),
      |   ^~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:327:14: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  327 |   { "today", cm_today, BRACE_ARGS },
      |              ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:327:14: note: (near initialization for 'command_table[271].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:187:3: note: 'cm_today' declared here
  187 |   cm_today (int arg);
      |   ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:329:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  329 |   { "u", cm_accent, MAYBE_BRACE_ARGS },
      |          ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:329:10: note: (near initialization for 'command_table[273].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:6: note: 'cm_accent' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |      ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:330:19: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  330 |   { "ubaraccent", cm_accent, MAYBE_BRACE_ARGS },
      |                   ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:330:19: note: (near initialization for 'command_table[274].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:6: note: 'cm_accent' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |      ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:331:19: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  331 |   { "udotaccent", cm_accent, MAYBE_BRACE_ARGS },
      |                   ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:331:19: note: (near initialization for 'command_table[275].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:6: note: 'cm_accent' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |      ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:337:13: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  337 |   { "uref", cm_uref, BRACE_ARGS },
      |             ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:337:13: note: (near initialization for 'command_table[281].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:89:3: note: 'cm_uref' declared here
   89 |   cm_uref (int arg);
      |   ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:338:12: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  338 |   { "url", cm_uref, BRACE_ARGS },
      |            ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:338:12: note: (near initialization for 'command_table[282].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:89:3: note: 'cm_uref' declared here
   89 |   cm_uref (int arg);
      |   ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:339:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  339 |   { "v", cm_accent, MAYBE_BRACE_ARGS },
      |          ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:339:10: note: (near initialization for 'command_table[283].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/lang.h:138:6: note: 'cm_accent' declared here
  138 | void cm_accent (int arg), cm_special_char (int arg),
      |      ^~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:340:14: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  340 |   { "value", cm_value, BRACE_ARGS },
      |              ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:340:14: note: (near initialization for 'command_table[284].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:213:3: note: 'cm_value' declared here
  213 |   cm_value (int arg, int start_pos, int end_pos);
      |   ^~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:341:12: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  341 |   { "var", cm_var, BRACE_ARGS },
      |            ^~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:341:12: note: (near initialization for 'command_table[285].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:134:3: note: 'cm_var' declared here
  134 |   cm_var (int arg, int start_pos, int end_pos),
      |   ^~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:342:13: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  342 |   { "verb", cm_verb, NO_BRACE_ARGS },
      |             ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:342:13: note: (near initialization for 'command_table[286].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:135:3: note: 'cm_verb' declared here
  135 |   cm_verb (int arg);
      |   ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:348:10: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  348 |   { "w", cm_w, BRACE_ARGS },
      |          ^~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:348:10: note: (near initialization for 'command_table[292].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:180:3: note: 'cm_w' declared here
  180 |   cm_w (int arg);
      |   ^~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:349:12: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  349 |   { "xml", cm_xml, NO_BRACE_ARGS },
      |            ^~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:349:12: note: (near initialization for 'command_table[293].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/insertion.h:70:50: note: 'cm_xml' declared here
   70 | extern void cm_ifxml (void), cm_ifnotxml (void), cm_xml (int arg);
      |                                                  ^~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:350:13: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int)' [-Wincompatible-pointer-types]
  350 |   { "xref", cm_xref, BRACE_ARGS },
      |             ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:350:13: note: (near initialization for 'command_table[294].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:85:3: note: 'cm_xref' declared here
   85 |   cm_xref (int arg),
      |   ^~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:353:18: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  353 |   { "iappendix", cm_ideprecated, NO_BRACE_ARGS },
      |                  ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:353:18: note: (near initialization for 'command_table[295].proc')
In file included from /home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:34:
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/sectioning.h:59:3: note: 'cm_ideprecated' declared here
   59 |   cm_ideprecated (int arg, int start, int end);
      |   ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:354:21: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  354 |   { "iappendixsec", cm_ideprecated, NO_BRACE_ARGS },
      |                     ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:354:21: note: (near initialization for 'command_table[296].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/sectioning.h:59:3: note: 'cm_ideprecated' declared here
   59 |   cm_ideprecated (int arg, int start, int end);
      |   ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:355:25: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  355 |   { "iappendixsection", cm_ideprecated, NO_BRACE_ARGS },
      |                         ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:355:25: note: (near initialization for 'command_table[297].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/sectioning.h:59:3: note: 'cm_ideprecated' declared here
   59 |   cm_ideprecated (int arg, int start, int end);
      |   ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:356:24: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  356 |   { "iappendixsubsec", cm_ideprecated, NO_BRACE_ARGS },
      |                        ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:356:24: note: (near initialization for 'command_table[298].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/sectioning.h:59:3: note: 'cm_ideprecated' declared here
   59 |   cm_ideprecated (int arg, int start, int end);
      |   ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:357:27: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  357 |   { "iappendixsubsubsec", cm_ideprecated, NO_BRACE_ARGS },
      |                           ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:357:27: note: (near initialization for 'command_table[299].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/sectioning.h:59:3: note: 'cm_ideprecated' declared here
   59 |   cm_ideprecated (int arg, int start, int end);
      |   ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:358:17: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  358 |   { "ichapter", cm_ideprecated, NO_BRACE_ARGS },
      |                 ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:358:17: note: (near initialization for 'command_table[300].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/sectioning.h:59:3: note: 'cm_ideprecated' declared here
   59 |   cm_ideprecated (int arg, int start, int end);
      |   ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:359:17: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  359 |   { "isection", cm_ideprecated, NO_BRACE_ARGS },
      |                 ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:359:17: note: (near initialization for 'command_table[301].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/sectioning.h:59:3: note: 'cm_ideprecated' declared here
   59 |   cm_ideprecated (int arg, int start, int end);
      |   ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:360:20: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  360 |   { "isubsection", cm_ideprecated, NO_BRACE_ARGS },
      |                    ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:360:20: note: (near initialization for 'command_table[302].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/sectioning.h:59:3: note: 'cm_ideprecated' declared here
   59 |   cm_ideprecated (int arg, int start, int end);
      |   ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:361:23: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  361 |   { "isubsubsection", cm_ideprecated, NO_BRACE_ARGS },
      |                       ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:361:23: note: (near initialization for 'command_table[303].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/sectioning.h:59:3: note: 'cm_ideprecated' declared here
   59 |   cm_ideprecated (int arg, int start, int end);
      |   ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:362:20: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  362 |   { "iunnumbered", cm_ideprecated, NO_BRACE_ARGS },
      |                    ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:362:20: note: (near initialization for 'command_table[304].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/sectioning.h:59:3: note: 'cm_ideprecated' declared here
   59 |   cm_ideprecated (int arg, int start, int end);
      |   ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:363:23: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  363 |   { "iunnumberedsec", cm_ideprecated, NO_BRACE_ARGS },
      |                       ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:363:23: note: (near initialization for 'command_table[305].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/sectioning.h:59:3: note: 'cm_ideprecated' declared here
   59 |   cm_ideprecated (int arg, int start, int end);
      |   ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:364:26: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  364 |   { "iunnumberedsubsec", cm_ideprecated, NO_BRACE_ARGS },
      |                          ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:364:26: note: (near initialization for 'command_table[306].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/sectioning.h:59:3: note: 'cm_ideprecated' declared here
   59 |   cm_ideprecated (int arg, int start, int end);
      |   ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:365:29: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  365 |   { "iunnumberedsubsubsec", cm_ideprecated, NO_BRACE_ARGS },
      |                             ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:365:29: note: (near initialization for 'command_table[307].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/sectioning.h:59:3: note: 'cm_ideprecated' declared here
   59 |   cm_ideprecated (int arg, int start, int end);
      |   ^~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:368:20: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  368 |   { "infoinclude", cm_obsolete, NO_BRACE_ARGS },
      |                    ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:368:20: note: (near initialization for 'command_table[308].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:51:13: note: 'cm_obsolete' declared here
   51 | static void cm_obsolete (int arg, int start, int end),
      |             ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:369:18: error: initialization of 'void (*)(void)' from incompatible pointer type 'void (*)(int,  int,  int)' [-Wincompatible-pointer-types]
  369 |   { "titlespec", cm_obsolete, NO_BRACE_ARGS },
      |                  ^~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:369:18: note: (near initialization for 'command_table[309].proc')
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c:51:13: note: 'cm_obsolete' declared here
   51 | static void cm_obsolete (int arg, int start, int end),
      |             ^~~~~~~~~~~

*** Failed target: cmds.o
*** In directory: /home/maksym/netbsd-gsoc/obj/obj.amd64/tools/texinfo/build/makeinfo
*** Failed commands:
	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<;  then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
	=> if cc -DHAVE_CONFIG_H -I. -I/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo -I.. -I/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/lib -I../intl -DLOCALEDIR=\"/home/maksym/netbsd-gsoc/obj/tools/share/locale\"   -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64  -O -MT cmds.o -MD -MP -MF ".deps/cmds.Tpo" -c -o cmds.o /home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.c;  then mv -f ".deps/cmds.Tpo" ".deps/cmds.Po"; else rm -f ".deps/cmds.Tpo"; exit 1; fi
*** [cmds.o] Error code 1

nbmake[5]: stopped making "all-am" in /home/maksym/netbsd-gsoc/obj/obj.amd64/tools/texinfo/build/makeinfo
if cc -DHAVE_CONFIG_H -I. -I/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo -I.. -I/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/lib -I../intl -DLOCALEDIR=\"/home/maksym/netbsd-gsoc/obj/tools/share/locale\"   -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64  -O -MT makeinfo.o -MD -MP -MF ".deps/makeinfo.Tpo" -c -o makeinfo.o /home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/makeinfo.c;  then mv -f ".deps/makeinfo.Tpo" ".deps/makeinfo.Po"; else rm -f ".deps/makeinfo.Tpo"; exit 1; fi
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/makeinfo.c: In function 'read_command':
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/makeinfo.c:2031:23: error: passing argument 1 of 'remember_brace' from incompatible pointer type [-Wincompatible-pointer-types]
 2031 |       remember_brace (enclosure_expand);
      |                       ^~~~~~~~~~~~~~~~
      |                       |
      |                       void (*)(int,  int,  int)
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/makeinfo.c:168:48: note: expected 'void (*)(void)' but argument is of type 'void (*)(int,  int,  int)'
  168 | static void remember_brace (COMMAND_FUNCTION (*proc));
      |                             ~~~~~~~~~~~~~~~~~~~^~~~~
In file included from /home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/makeinfo.c:38:
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/macro.h:69:13: note: 'enclosure_expand' declared here
   69 | extern void enclosure_expand (int arg, int start, int end);
      |             ^~~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/makeinfo.c:2053:12: error: too many arguments to function 'entry->proc'; expected 0, have 3
 2053 |           (*(entry->proc)) (START, output_paragraph_offset, 0);
      |           ~^~~~~~~~~~~~~~~
In file included from /home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/makeinfo.c:30:
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:47:21: note: declared here
   47 |   COMMAND_FUNCTION *proc;
      |                     ^~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/makeinfo.c:2074:12: error: too many arguments to function 'entry->proc'; expected 0, have 3
 2074 |           (*(entry->proc)) (END, saved_offset, output_paragraph_offset);
      |           ~^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:47:21: note: declared here
   47 |   COMMAND_FUNCTION *proc;
      |                     ^~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/makeinfo.c:2081:4: error: too many arguments to function 'entry->proc'; expected 0, have 3
 2081 |   (*(entry->proc)) (START, output_paragraph_offset, 0);
      |   ~^~~~~~~~~~~~~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/cmds.h:47:21: note: declared here
   47 |   COMMAND_FUNCTION *proc;
      |                     ^~~~
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/makeinfo.c: In function 'pop_and_call_brace':
/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/makeinfo.c:2351:6: error: too many arguments to function 'proc'; expected 0, have 3
 2351 |     (*proc) (END, pos, output_paragraph_offset);
      |     ~^~~~~~

*** Failed target: makeinfo.o
*** In directory: /home/maksym/netbsd-gsoc/obj/obj.amd64/tools/texinfo/build/makeinfo
*** Failed commands:
	if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" -c -o $@ $<;  then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; fi
	=> if cc -DHAVE_CONFIG_H -I. -I/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo -I.. -I/home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/lib -I../intl -DLOCALEDIR=\"/home/maksym/netbsd-gsoc/obj/tools/share/locale\"   -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64  -O -MT makeinfo.o -MD -MP -MF ".deps/makeinfo.Tpo" -c -o makeinfo.o /home/maksym/netbsd-gsoc/src/tools/texinfo/../../external/gpl2/texinfo/dist/makeinfo/makeinfo.c;  then mv -f ".deps/makeinfo.Tpo" ".deps/makeinfo.Po"; else rm -f ".deps/makeinfo.Tpo"; exit 1; fi
*** [makeinfo.o] Error code 1

nbmake[5]: stopped making "all-am" in /home/maksym/netbsd-gsoc/obj/obj.amd64/tools/texinfo/build/makeinfo

*** Failed target: all-recursive
*** In directory: /home/maksym/netbsd-gsoc/obj/obj.amd64/tools/texinfo/build/makeinfo
*** Failed commands:
	@set fnord $$MAKEFLAGS; amf=$$2;  dot_seen=no;  target=`echo $@ | sed s/-recursive//`;  list='$(SUBDIRS)'; for subdir in $$list; do  echo "Making $$target in $$subdir";  if test "$$subdir" = "."; then  dot_seen=yes;  local_target="$$target-am";  else  local_target="$$target";  fi;  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target)  || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac;  done;  if test "$$dot_seen" = "no"; then  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1;  fi; test -z "$$fail"
	=> @set fnord $MAKEFLAGS; amf=$2;  dot_seen=no;  target=`echo all-recursive | sed s/-recursive//`;  list='tests'; for subdir in $list; do  echo "Making $target in $subdir";  if test "$subdir" = "."; then  dot_seen=yes;  local_target="$target-am";  else  local_target="$target";  fi;  (cd $subdir && /home/maksym/netbsd-gsoc/obj/tools/bin/nbmake  -f /home/maksym/netbsd-gsoc/src/tools/texinfo/../Makefile.gnuwrap  $local_target)  || case "$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac;  done;  if test "$dot_seen" = "no"; then  /home/maksym/netbsd-gsoc/obj/tools/bin/nbmake  -f /home/maksym/netbsd-gsoc/src/tools/texinfo/../Makefile.gnuwrap  "$target-am" || exit 1;  fi; test -z "$fail"
*** [all-recursive] Error code 1

nbmake[4]: stopped making "all" in /home/maksym/netbsd-gsoc/obj/obj.amd64/tools/texinfo/build/makeinfo

*** Failed target: all-recursive
*** In directory: /home/maksym/netbsd-gsoc/obj/obj.amd64/tools/texinfo/build
*** Failed commands:
	@set fnord $$MAKEFLAGS; amf=$$2;  dot_seen=no;  target=`echo $@ | sed s/-recursive//`;  list='$(SUBDIRS)'; for subdir in $$list; do  echo "Making $$target in $$subdir";  if test "$$subdir" = "."; then  dot_seen=yes;  local_target="$$target-am";  else  local_target="$$target";  fi;  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target)  || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac;  done;  if test "$$dot_seen" = "no"; then  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1;  fi; test -z "$$fail"
	=> @set fnord $MAKEFLAGS; amf=$2;  dot_seen=no;  target=`echo all-recursive | sed s/-recursive//`;  list=' intl m4 lib makeinfo po util doc'; for subdir in $list; do  echo "Making $target in $subdir";  if test "$subdir" = "."; then  dot_seen=yes;  local_target="$target-am";  else  local_target="$target";  fi;  (cd $subdir && /home/maksym/netbsd-gsoc/obj/tools/bin/nbmake  -f /home/maksym/netbsd-gsoc/src/tools/texinfo/../Makefile.gnuwrap  $local_target)  || case "$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac;  done;  if test "$dot_seen" = "no"; then  /home/maksym/netbsd-gsoc/obj/tools/bin/nbmake  -f /home/maksym/netbsd-gsoc/src/tools/texinfo/../Makefile.gnuwrap  "$target-am" || exit 1;  fi; test -z "$fail"
*** [all-recursive] Error code 1

nbmake[3]: stopped making "all-recursive" in /home/maksym/netbsd-gsoc/obj/obj.amd64/tools/texinfo/build

*** Failed target:  all
*** Failed command: /home/maksym/netbsd-gsoc/obj/tools/bin/nbmake -f /home/maksym/netbsd-gsoc/src/tools/texinfo/../Makefile.gnuwrap all-recursive
*** Error code 1 (continuing)

Stop.
nbmake[2]: stopped making "all" in /home/maksym/netbsd-gsoc/obj/obj.amd64/tools/texinfo/build

*** Failed target: .build_done
*** In directory: /home/maksym/netbsd-gsoc/src/tools/texinfo
*** Failed commands:
	@(cd build && ${BUILD_COMMAND} ${ALL_TARGET})
	=> @(cd build && AR=ar  AWK=/home/maksym/netbsd-gsoc/obj/tools/bin/nbawk  CC=cc  CFLAGS=-O  CONFIG_SHELL=/usr/bin/sh  CPPFLAGS=\ -D_LARGEFILE_SOURCE\ -D_LARGEFILE64_SOURCE\ -D_FILE_OFFSET_BITS=64  CXX=c++  CXXFLAGS=-O  INSTALL=/home/maksym/netbsd-gsoc/obj/tools/bin/x86_64--netbsd-install\ -c\ -p\ -r  LDFLAGS=  LEX=/home/maksym/netbsd-gsoc/obj/tools/bin/nblex  FLEX=/home/maksym/netbsd-gsoc/obj/tools/bin/nblex  M4=/home/maksym/netbsd-gsoc/obj/tools/bin/nbm4  MAKE=/home/maksym/netbsd-gsoc/obj/tools/bin/nbmake  PATH="/home/maksym/netbsd-gsoc/obj/tools/bin:$PATH"  RANLIB=ranlib  YACC=/home/maksym/netbsd-gsoc/obj/tools/bin/nbyacc /home/maksym/netbsd-gsoc/obj/tools/bin/nbmake  -f /home/maksym/netbsd-gsoc/src/tools/texinfo/../Makefile.gnuwrap  BISON=true DESTDIR= INSTALL=/home/maksym/netbsd-gsoc/obj/tools/bin/x86_64--netbsd-install\ -c\ -p\ -r V=1 all)
	@if [ ! -f $@ ] || [ -n "$$(find build -type f -newer .build_done -print)" ];  then touch $@; fi
	=> @if [ ! -f .build_done ] || [ -n "$(find build -type f -newer .build_done -print)" ];  then touch .build_done; fi
*** [.build_done] Error code 1

nbmake[1]: stopped making "realall" in /home/maksym/netbsd-gsoc/src/tools/texinfo

nbmake: stopped making "dependall" in /home/maksym/netbsd-gsoc/src/tools/texinfo


Home | Main Index | Thread Index | Old Index