Hi , I create shared library, so I had to put AC_PROG_LIBTOOL macro call in configure.in. The result is that configure script makes some strange and unnecessary (at least for me ;) ) checks now, e.g: checking for g77... no checking for f77... no checking for xlf... no checking for frt... no checking for pgf77... no [...] checking whether we are using the GNU Fortran 77 compiler... no Why does it check for fortran compiler if I'm using C++ only? My configure.in is very simple: AC_INIT(deflatec++, 1.00) AM_INIT_AUTOMAKE AC_LANG(C++) AC_PROG_CXX AC_PROG_INSTALL AC_PROG_LIBTOOL AC_OUTPUT(Makefile src/Makefile) Can those checks be turned off ? Greets Adam _______________________________________________ Autoconf mailing list Autoconf@xxxxxxx http://lists.gnu.org/mailman/listinfo/autoconf