Bonjour Akim, Just a few words regarding the bootstrapping issue.
I use exactly the following procedure to chekout bison: > git clone git://git.savannah.gnu.org/bison.git > git submodule update --init > ./bootstrap > The bootstrap then failed with two errors: error: possibly undefined macro: AM_LANGINFO_CODESET error: possibly undefined macro: gl_GLIBC21 After an investigation I did, I was able to fix the error by removing two following lines from 'excluded_files' list in bootstrap.conf: m4/codeset.m4 m4/glibc21.m4 The source of error was probably, that AM_LANGINFO_CODESET and gl_GLIBC21 macros were used somewhere in 'm4' directory but were not defined. After the fix, bootstrapping process brings two files, containing appropriate definitions as symbolic links m4 -> gnulib/m4 and everything works fine. P.S. Could you please advice me, which mailing list is more appropriate for this kind of questions ? Merci beaucoup, Alex Rozenman ([email protected]).
