| Thanks in advance to anyone who can help me with this: | I am having trouble making shared libs with the latest autoconf/automake | packages: | | >aclocal | >autoconf | configure.in:9: error: possibly undefined macro: AC_PROG_LIBTOOL | | | configure.in looks likt this: | | ## begin configure.in | AC_INIT(ReportFactory/Main.C) | AM_CONFIG_HEADER(config.h) | AM_INIT_AUTOMAKE(Reporting,1.0) | AC_PROG_CC | AC_PROG_CXX | AC_PROG_INSTALL | ##AC_PROG_RANLIB | AC_PROG_LIBTOOL | AC_OUTPUT(Makefile) | ## end configure.in
You also need libtool to use libtool. Run aclocal, and read the doc (or the converse).
