* Stepan Kasal wrote on Wed, Jan 11, 2006 at 07:52:58PM CET: > this sounds very well: > > On Wed, Jan 11, 2006 at 10:28:40AM -0600, Matt Hull wrote: > > makefile.am: required file `./compile' not found > > makefile.am: required file `./depcomp' not found > > Run automake --add-missing to install these two files. > > Does it work then?
No. Well, it works, but you have to say aclocal -I aclocal manually. Adding ACLOCAL_AMFLAGS = -I aclocal to makefile.am should fix this (so that you then should be able to use `autoreconf -vi'), but doesn't: autoreconf looks only in Makefile.am, not in makefile.am. So you could rename that file (also adjust the end of configure.in). Then `autoreconf -vi' works. Then we're back at some independent issue(s) in configure.in I haven't looked at yet. Cheers, Ralf