autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

AC_PROG_LIBTOOL


From: Adam Dyga
Subject: AC_PROG_LIBTOOL
Date: Fri, 15 Oct 2004 11:10:10 +0000
User-agent: KMail/1.6.2

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]