sneak in a hack to remove CXX/F77 checks to improved configure speed

SVN revision: 16640
This commit is contained in:
Mike Frysinger 2005-09-07 04:17:18 +00:00
parent e93b056b17
commit 4417576b4c
1 changed files with 7 additions and 0 deletions

View File

@ -14,6 +14,13 @@ AM_PROG_CC_STDC
AC_HEADER_STDC
AC_C_CONST
AM_ENABLE_SHARED
dnl Next four lines is a hack to prevent libtool checking for CXX/F77
m4_undefine([AC_PROG_CXX])
m4_defun([AC_PROG_CXX],[])
m4_undefine([AC_PROG_F77])
m4_defun([AC_PROG_F77],[])
AM_PROG_LIBTOOL
if test "x${bindir}" = 'x${exec_prefix}/bin'; then