Tony Abou-Assaleh <[EMAIL PROTECTED]> writes: > I spent a few nights already trying to gettextize grep. Learned a lot > about gettextize and gettext in general, but still no go. > > Running ./autogen.sh I get the error: > > configure.ac:60: error: possibly undefined macro: jm_AC_TYPE_UINTMAX_T > If this token and others are legitimate, please use > m4_pattern_allow. > See the Autoconf documentation. > configure:7686: error: possibly undefined macro: jm_AC_HEADER_INTTYPES_H > configure:7687: error: possibly undefined macro: > jm_AC_TYPE_UNSIGNED_LONG_LONG
You should remove acinclude.m4 and the rule to generated it from toplevel Makefile.am. Instead put ACLOCAL_AMFLAGS = -I m4 there. Also, the files m4/header.m4, m4/install.m4, m4/isc-posix.m4, m4/largefile.m4, m4/missing.m4 and m4/sanity.m4 are very old and should be removed as well. > I could manually rename these two jm_'s to gl_'s but I'm not sure if > that's a good solution. Looking at GNU Hello, it appears the problem was > eliminated by using gnulib and removing m4 from CVS. gettextize does not depend on gnulib. Andreas. -- Andreas Schwab, SuSE Labs, [EMAIL PROTECTED] SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany PGP key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different."
