From: Yang Tse Date: Tue, 6 Mar 2007 16:53:53 +0000 (+0000) Subject: skip libtool C++ and Fortran linker checks X-Git-Tag: curl-7_16_2~210 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=23786eae3289f0b290a1a81a6fafe8ffb31e1303;p=curl skip libtool C++ and Fortran linker checks --- diff --git a/ares/configure.ac b/ares/configure.ac index c3d2b3073..9d3d897e5 100644 --- a/ares/configure.ac +++ b/ares/configure.ac @@ -63,12 +63,18 @@ AC_HELP_STRING([--disable-debug],[Disable debug options]), AC_MSG_RESULT(no) ) -dnl skip libtool C++ and Fortran checks +dnl skip libtool C++ and Fortran compiler checks m4_undefine([AC_PROG_CXX]) m4_defun([AC_PROG_CXX],[]) m4_undefine([AC_PROG_F77]) m4_defun([AC_PROG_F77],[]) +dnl skip libtool C++ and Fortran linker checks +m4_undefine([AC_LIBTOOL_CXX]) +m4_defun([AC_LIBTOOL_CXX],[]) +m4_undefine([AC_LIBTOOL_F77]) +m4_defun([AC_LIBTOOL_F77],[]) + dnl libtool setup AC_PROG_LIBTOOL diff --git a/configure.ac b/configure.ac index 5e5630aee..5c13d7c9e 100644 --- a/configure.ac +++ b/configure.ac @@ -115,12 +115,18 @@ AC_SYS_LARGEFILE dnl support building of Windows DLLs AC_LIBTOOL_WIN32_DLL -dnl skip libtool C++ and Fortran checks +dnl skip libtool C++ and Fortran compiler checks m4_undefine([AC_PROG_CXX]) m4_defun([AC_PROG_CXX],[]) m4_undefine([AC_PROG_F77]) m4_defun([AC_PROG_F77],[]) +dnl skip libtool C++ and Fortran linker checks +m4_undefine([AC_LIBTOOL_CXX]) +m4_defun([AC_LIBTOOL_CXX],[]) +m4_undefine([AC_LIBTOOL_F77]) +m4_defun([AC_LIBTOOL_F77],[]) + dnl libtool setup AC_PROG_LIBTOOL