* Daniel Pekelharing wrote on Fri, Dec 16, 2005 at 09:32:27AM CET: > > Please excuse a dumb question.. how do I include a .m4 file in my > configure.ac? ordered by increasing preference and ease of use: 0) copy (cat) it into acinclude.m4. 1) run aclocal to have its text included in aclocal.m4. (You may have to make sure that aclocal finds your .m4 input file by either one of command line arguments or the `dirlist' feature; both explained in Automake manual). 2) In your project, mkdir m4 copy foo.m4 into m4/foo.m4 aclocal -I m4 for repeatability put ACLOCAL_AMFLAGS = -I m4 in toplevel Makefile.am 3) Additionally to (2), use CVS Automake's `aclocal --install' to automatically update the m4/foo.m4 file from its source if newer. Add AC_CONFIG_MACRO_DIR([m4]) to configure.ac for this. Cheers, Ralf _______________________________________________ Autoconf mailing list Autoconf@xxxxxxx http://lists.gnu.org/mailman/listinfo/autoconf