Steven Shaw <[EMAIL PROTECTED]> wrote: > ./bootstrap is still failing on RHEL3 even with the modern stable versions > of autotools. ... > Here is the output from ./bootstrap: > > __BEGIN__ > lib/broker/Makefile.am:9: Libtool library used but `LIBTOOL' is undefined > lib/broker/Makefile.am:9: The usual way to define `LIBTOOL' is to add > `AC_PROG_LIBTOOL' ... > tests/gen.mk:97: If `AC_PROG_LIBTOOL' is in `configure.ac', make sure > tests/gen.mk:97: its definition is in aclocal's search path. > tests/Makefile.am:79: `tests/gen.mk' included from here > __END__
That means libtool.am is not in any directory that aclocal searches. For my installation, it's here: /usr/share/aclocal/libtool.m4 And that agrees with what aclocal reports: $ aclocal --print-ac-dir /usr/share/aclocal I.e., you should be able to do this without error: ls -l $(aclocal --print-ac-dir)/libtool.m4
